Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
eeholmes authored Nov 24, 2024
1 parent 462bb05 commit b75afa1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions images/py-rocket-geospatial-2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}

0 comments on commit b75afa1

Please sign in to comment.