We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99aaa18 + 13723bd commit 6c2e037Copy full SHA for 6c2e037
1 file changed
Dockerfile
@@ -15,6 +15,8 @@ RUN wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/ins
15
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 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