We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5fa577 commit 1e90012Copy full SHA for 1e90012
images/acoustics/Dockerfile
@@ -12,11 +12,13 @@ COPY . /tmp/
12
RUN /pyrocket_scripts/install-conda-packages.sh /tmp/environment.yml || (echo "install-conda-packages.sh failed" && exit 1)
13
RUN rm -rf /tmp/*
14
15
+WORKDIR /
16
RUN git clone https://github.com/gavinmacaulay/data_store_testing.git && \
- cd data_store_testing && \
17
+ cd /data_store_testing && \
18
wget https://echosms-datastore.syd1.cdn.digitaloceanspaces.com/echosms_datastore_final.zip && \
19
unzip echosms_datastore_final.zip -d echosms_datastore_final && \
- rm echosms_datastore_final.zip
20
+ rm echosms_datastore_final.zip && \
21
+ chown -R ${NB_USER}:staff /data_store_testing
22
23
USER ${NB_USER}
24
WORKDIR ${HOME}
0 commit comments