Skip to content

Commit 9b72790

Browse files
authored
Merge pull request #783 from MetaCell/fix/netpyne-deployment
Fix netpyne Dockerfile
2 parents 87b3167 + 6eb2e55 commit 9b72790

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ RUN mkdir -p /opt/workspace
5353
RUN mkdir -p /opt/user
5454

5555

56-
57-
5856
ENV NEURON_HOME=/opt/conda
5957

6058

@@ -65,8 +63,10 @@ RUN jupyter nbextension enable --py --sys-prefix jupyter_geppetto
6563
RUN jupyter nbextension enable --py --sys-prefix widgetsnbextension
6664
RUN jupyter serverextension enable --py --sys-prefix jupyter_geppetto
6765

68-
RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
69-
python utilities/install.py --npm-skip --no-test
66+
ARG BUILD_ARGS=""
67+
ARG WORKSPACE_VERSION=master
68+
RUN --mount=type=cache,target=/root/.cache python -m pip install --upgrade pip &&\
69+
python utilities/install.py ${BUILD_ARGS} --workspace $WORKSPACE_VERSION
7070

7171

7272
RUN mv workspace /opt/workspace/tutorials

0 commit comments

Comments
 (0)