File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1- ARG IMAGE=djbase
1+ ARG IMAGE=jupyter/docker-stacks-foundation
22ARG PY_VER=3.9
33ARG DISTRO=debian
4- FROM datajoint/${IMAGE}:py${PY_VER}-${DISTRO}
4+ FROM ${IMAGE}
5+ RUN conda install -y -n base -c conda-forge python=${PY_VER} && \
6+ conda clean -afy
57COPY --chown=anaconda:anaconda ./setup.py ./datajoint.pub ./requirements.txt /main/
68COPY --chown=anaconda:anaconda ./datajoint /main/datajoint
79RUN \
Original file line number Diff line number Diff line change @@ -60,6 +60,12 @@ services:
6060 app :
6161 << : *net
6262 image : datajoint/djtest:py${PY_VER:-3.8}-${DISTRO:-alpine}
63+ build :
64+ context : .
65+ dockerfile : Dockerfile
66+ args :
67+ PY_VER : ${PY_VER:-3.8}
68+ DISTRO : ${DISTRO:-alpine}
6369 depends_on :
6470 db :
6571 condition : service_healthy
You can’t perform that action at this time.
0 commit comments