Skip to content

Commit f25f96b

Browse files
authored
fix the issue with pip
/tmp2 was not writeable by jovyan
1 parent 9e6b693 commit f25f96b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

images/acoustics/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ LABEL org.opencontainers.image.licenses=Apache2.0
88

99
USER root
1010

11-
COPY . /tmp2/
12-
RUN /pyrocket_scripts/install-conda-packages.sh /tmp2/environment.yml || echo "install-conda-packages.sh failed" || true
13-
RUN rm -rf /tmp2
11+
COPY . /tmp/acoustics-build/
12+
RUN /pyrocket_scripts/install-conda-packages.sh /tmp/acoustics-build/environment.yml || (echo "install-conda-packages.sh failed" && exit 1)
13+
RUN rm -rf /tmp/acoustics-build
1414

1515
RUN git clone https://github.com/gavinmacaulay/data_store_testing.git && \
1616
cd data_store_testing && \

0 commit comments

Comments
 (0)