Commit 3616dc24 authored by Jeffrey Post's avatar Jeffrey Post
Browse files

Auto-saving for jeffrey.post on branch master from commit a5bc2520

parent a5bc2520
Pipeline #139170 failed with stage
in 58 seconds
...@@ -9,12 +9,14 @@ FROM renku/renkulab-r:4.0.0-renku0.10.4-0.6.3 ...@@ -9,12 +9,14 @@ FROM renku/renkulab-r:4.0.0-renku0.10.4-0.6.3
# e.g. the following installs apt-utils and vim; each pkg on its own line, all lines # e.g. the following installs apt-utils and vim; each pkg on its own line, all lines
# except for the last end with backslash '\' to continue the RUN line # except for the last end with backslash '\' to continue the RUN line
# #
# USER root USER root
# RUN apt-get update && \ RUN apt-get update && \
# apt-get install -y --no-install-recommends \ /opt/conda/bin/python3 -m pip install --upgrade pip && \
apt-get install -y --no-install-recommends \
conda update --all -y
# apt-utils \ # apt-utils \
# vim # vim
# USER ${NB_USER} USER ${NB_USER}
# install the R dependencies # install the R dependencies
COPY install.R /tmp/ COPY install.R /tmp/
...@@ -22,4 +24,10 @@ RUN R -f /tmp/install.R ...@@ -22,4 +24,10 @@ RUN R -f /tmp/install.R
# install the python dependencies # install the python dependencies
COPY requirements.txt /tmp/ COPY requirements.txt /tmp/
COPY environment.yml /tmp/
RUN pip3 install -r /tmp/requirements.txt RUN pip3 install -r /tmp/requirements.txt
RUN conda env update -n base --file /tmp/environment.yml
USER root
RUN conda update --all -y
USER ${NB_USER}
This diff is collapsed.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment