Skip to content

Commit

Permalink
feat: updated Docker images to R 4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Dec 14, 2021
1 parent 5d11ff3 commit 94d44c5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Dockerfile-base
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ LABEL \

# Install requirements
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
gnupg \
software-properties-common \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B8F25A8A73EACF41 \
&& add-apt-repository 'deb http://cloud.r-project.org/bin/linux/debian buster-cran40/' \
&& apt-get update -y \
&& apt-get install -y --no-install-recommends \
r-base \
build-essential \
Expand All @@ -28,14 +34,14 @@ RUN apt-get update -y \
libssl-dev \
libxml2 \
libxml2-dev \
\
&& Rscript \
-e "install.packages('devtools')" \
-e "require(devtools)" \
-e "install_version('BoolNet', version='${SIMULATOR_VERSION}')" \
-e "require('BoolNet')" \
\
&& apt-get remove -y \
gnupg \
software-properties-common \
build-essential \
gcc \
gfortran \
Expand Down

0 comments on commit 94d44c5

Please sign in to comment.