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.
2 parents 1e24ea0 + 1e921b5 commit 6c92598Copy full SHA for 6c92598
.dockerignore
@@ -0,0 +1,6 @@
1
+notebook
2
+build
3
+*.egg-info
4
+dist
5
+.vscode
6
+__pycache__
Dockerfile
@@ -1,5 +1,5 @@
FROM datajoint/pydev
-ADD . /src
-RUN pip install --user /src && \
- rm -rf /src
+COPY --chown=dja . /tmp/src
+RUN pip install --user /tmp/src && \
+ rm -rf /tmp/src
0 commit comments