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
2
2
ARG PY_VER=3.9
3
3
ARG 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
5
7
COPY --chown=anaconda:anaconda ./setup.py ./datajoint.pub ./requirements.txt /main/
6
8
COPY --chown=anaconda:anaconda ./datajoint /main/datajoint
7
9
RUN \
Original file line number Diff line number Diff line change @@ -60,6 +60,12 @@ services:
60
60
app :
61
61
<< : *net
62
62
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}
63
69
depends_on :
64
70
db :
65
71
condition : service_healthy
You can’t perform that action at this time.
0 commit comments