We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 87b3167 + 6eb2e55 commit 9b72790Copy full SHA for 9b72790
1 file changed
Dockerfile
@@ -53,8 +53,6 @@ RUN mkdir -p /opt/workspace
53
RUN mkdir -p /opt/user
54
55
56
-
57
58
ENV NEURON_HOME=/opt/conda
59
60
@@ -65,8 +63,10 @@ RUN jupyter nbextension enable --py --sys-prefix jupyter_geppetto
65
63
RUN jupyter nbextension enable --py --sys-prefix widgetsnbextension
66
64
RUN jupyter serverextension enable --py --sys-prefix jupyter_geppetto
67
68
-RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
69
- python utilities/install.py --npm-skip --no-test
+ARG BUILD_ARGS=""
+ARG WORKSPACE_VERSION=master
+RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
+ python utilities/install.py ${BUILD_ARGS} --workspace $WORKSPACE_VERSION
70
71
72
RUN mv workspace /opt/workspace/tutorials
0 commit comments