-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65edfdc
commit 70ed543
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
ARG R_VERSION=4.2.3 | ||
ARG R_VERSION=4.2.0 | ||
FROM rstudio/r-base:${R_VERSION}-bionic | ||
LABEL maintainer="RStudio Docker <[email protected]>" | ||
|
||
ARG R_VERSION=4.2.3 | ||
ARG R_VERSION=4.2.0 | ||
|
||
# Locale configuration --------------------------------------------------------# | ||
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | ||
|
@@ -39,7 +39,7 @@ RUN gpg --update-trustdb \ | |
&& ln -s /tini /usr/local/bin/tini | ||
|
||
# Add another R version -------------------------------------------------------# | ||
ARG R_VERSION_ALT=4.1.3 | ||
ARG R_VERSION_ALT=3.6.2 | ||
RUN apt-get update -qq && \ | ||
curl -O https://cdn.rstudio.com/r/ubuntu-1804/pkgs/r-${R_VERSION_ALT}_1_amd64.deb && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y ./r-${R_VERSION_ALT}_1_amd64.deb && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
ARG R_VERSION=4.2.3 | ||
ARG R_VERSION=4.2.0 | ||
FROM rstudio/r-base:${R_VERSION}-jammy | ||
LABEL maintainer="RStudio Docker <[email protected]>" | ||
|
||
ARG R_VERSION=4.2.3 | ||
ARG R_VERSION=4.2.0 | ||
|
||
# Locale configuration --------------------------------------------------------# | ||
RUN localedef -i en_US -f UTF-8 en_US.UTF-8 | ||
|
@@ -35,7 +35,7 @@ RUN gpg --update-trustdb \ | |
&& ln -s /tini /usr/local/bin/tini | ||
|
||
# Add another R version -------------------------------------------------------# | ||
ARG R_VERSION_ALT=4.1.3 | ||
ARG R_VERSION_ALT=3.6.2 | ||
RUN apt-get update -qq && \ | ||
curl -O https://cdn.rstudio.com/r/ubuntu-2204/pkgs/r-${R_VERSION_ALT}_1_amd64.deb && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y ./r-${R_VERSION_ALT}_1_amd64.deb && \ | ||
|