We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eefcbd8 commit 91693ebCopy full SHA for 91693eb
Dockerfile
@@ -1,11 +1,14 @@
1
ARG PY_VER=3.9
2
ARG IMAGE=jupyter/docker-stacks-foundation
3
FROM ${IMAGE}
4
-USER jovyan
5
RUN conda install -y -n base -c conda-forge python=${PY_VER} git graphviz pydot && \
6
conda clean -afy
+USER 1000
7
+VOLUME /src
8
+WORKDIR /tmp
9
COPY --chown=1000:100 ./pyproject.toml ./README.md ./LICENSE.txt /main/
10
COPY --chown=1000:100 ./datajoint /main/datajoint
11
RUN \
12
pip install --no-cache-dir /main && \
13
rm -r /main/*
14
+WORKDIR /src
0 commit comments