We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa9226e commit 13723bdCopy full SHA for 13723bd
1 file changed
Dockerfile
@@ -16,7 +16,7 @@ RUN wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/ins
16
# Copy the repo files into /tmp (environment/*.yml, install.R, etc)
17
COPY . /tmp/
18
# Fix permissions so NB_USER can write to /tmp/environment during package installs
19
-RUN chmod -R 777 /tmp/environment
+RUN chown -R ${NB_USER}:${NB_USER} /tmp/environment && chmod -R 755 /tmp/environment
20
21
# Update conda env sequentially to prevent hairy solve
22
RUN /pyrocket_scripts/install-conda-packages.sh /tmp/environment/env-core1.yml || (echo "install env-core1 failed" && exit 1)
0 commit comments