From b75afa12f1bc1bc3a4269d1cb0ffe1fd98ab385f Mon Sep 17 00:00:00 2001 From: Eli Holmes - NOAA Date: Sun, 24 Nov 2024 13:05:03 -0700 Subject: [PATCH] Update Dockerfile --- images/py-rocket-geospatial-2/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/images/py-rocket-geospatial-2/Dockerfile b/images/py-rocket-geospatial-2/Dockerfile index 8058685..075f2a9 100644 --- a/images/py-rocket-geospatial-2/Dockerfile +++ b/images/py-rocket-geospatial-2/Dockerfile @@ -8,6 +8,9 @@ LABEL org.opencontainers.image.licenses=Apache2.0 LABEL org.opencontainers.image.version=2024.11.19 USER root +# Install Zotero; must be run before apt since apt install zotero requires this script be run first +RUN wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/install.sh | bash + COPY . /tmp2/ RUN /pyrocket_scripts/install-conda-packages.sh /tmp2/environment.yml || echo "install-conda-packages.sh failed" || true RUN /pyrocket_scripts/install-r-packages.sh /tmp2/install.R || echo "install-r-package.sh failed" || true @@ -37,9 +40,5 @@ RUN cd /tmp && \ rm -rf PanoplyJ-5.5.5.tgz ENV PATH=${PATH}:/tmp/PanoplyJ -# Install Zotero -RUN wget -qO- https://raw.githubusercontent.com/retorquere/zotero-deb/master/install.sh | bash - - USER ${NB_USER} WORKDIR ${HOME}