Skip to content

Commit 2e7f7ac

Browse files
committed
Add support for Ubuntu 26.04 Resolute
1 parent d7a97b7 commit 2e7f7ac

20 files changed

Lines changed: 241 additions & 2 deletions

File tree

4.0/resolute/Dockerfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
3+
#
4+
# PLEASE DO NOT EDIT IT DIRECTLY.
5+
#
6+
7+
ARG BASE_IMAGE=posit/r-base
8+
FROM ${BASE_IMAGE}:resolute
9+
10+
ARG R_VERSION=4.0.5
11+
ARG OS_IDENTIFIER=ubuntu-2604
12+
13+
# Install R
14+
RUN wget "https://cdn.posit.co/r/${OS_IDENTIFIER}/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
15+
apt-get update -qq && \
16+
DEBIAN_FRONTEND=noninteractive apt-get install -f -y "./r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
17+
ln -s "/opt/R/${R_VERSION}/bin/R" /usr/bin/R && \
18+
ln -s "/opt/R/${R_VERSION}/bin/Rscript" /usr/bin/Rscript && \
19+
ln -s "/opt/R/${R_VERSION}/lib/R" /usr/lib/R && \
20+
rm "r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
21+
rm -rf /var/lib/apt/lists/*
22+
23+
CMD ["R"]

4.0/resolute/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.0.5

4.1/resolute/Dockerfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
3+
#
4+
# PLEASE DO NOT EDIT IT DIRECTLY.
5+
#
6+
7+
ARG BASE_IMAGE=posit/r-base
8+
FROM ${BASE_IMAGE}:resolute
9+
10+
ARG R_VERSION=4.1.3
11+
ARG OS_IDENTIFIER=ubuntu-2604
12+
13+
# Install R
14+
RUN wget "https://cdn.posit.co/r/${OS_IDENTIFIER}/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
15+
apt-get update -qq && \
16+
DEBIAN_FRONTEND=noninteractive apt-get install -f -y "./r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
17+
ln -s "/opt/R/${R_VERSION}/bin/R" /usr/bin/R && \
18+
ln -s "/opt/R/${R_VERSION}/bin/Rscript" /usr/bin/Rscript && \
19+
ln -s "/opt/R/${R_VERSION}/lib/R" /usr/lib/R && \
20+
rm "r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
21+
rm -rf /var/lib/apt/lists/*
22+
23+
CMD ["R"]

4.1/resolute/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.1.3

4.2/resolute/Dockerfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
3+
#
4+
# PLEASE DO NOT EDIT IT DIRECTLY.
5+
#
6+
7+
ARG BASE_IMAGE=posit/r-base
8+
FROM ${BASE_IMAGE}:resolute
9+
10+
ARG R_VERSION=4.2.3
11+
ARG OS_IDENTIFIER=ubuntu-2604
12+
13+
# Install R
14+
RUN wget "https://cdn.posit.co/r/${OS_IDENTIFIER}/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
15+
apt-get update -qq && \
16+
DEBIAN_FRONTEND=noninteractive apt-get install -f -y "./r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
17+
ln -s "/opt/R/${R_VERSION}/bin/R" /usr/bin/R && \
18+
ln -s "/opt/R/${R_VERSION}/bin/Rscript" /usr/bin/Rscript && \
19+
ln -s "/opt/R/${R_VERSION}/lib/R" /usr/lib/R && \
20+
rm "r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
21+
rm -rf /var/lib/apt/lists/*
22+
23+
CMD ["R"]

4.2/resolute/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.2.3

4.3/resolute/Dockerfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
3+
#
4+
# PLEASE DO NOT EDIT IT DIRECTLY.
5+
#
6+
7+
ARG BASE_IMAGE=posit/r-base
8+
FROM ${BASE_IMAGE}:resolute
9+
10+
ARG R_VERSION=4.3.3
11+
ARG OS_IDENTIFIER=ubuntu-2604
12+
13+
# Install R
14+
RUN wget "https://cdn.posit.co/r/${OS_IDENTIFIER}/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
15+
apt-get update -qq && \
16+
DEBIAN_FRONTEND=noninteractive apt-get install -f -y "./r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
17+
ln -s "/opt/R/${R_VERSION}/bin/R" /usr/bin/R && \
18+
ln -s "/opt/R/${R_VERSION}/bin/Rscript" /usr/bin/Rscript && \
19+
ln -s "/opt/R/${R_VERSION}/lib/R" /usr/lib/R && \
20+
rm "r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
21+
rm -rf /var/lib/apt/lists/*
22+
23+
CMD ["R"]

4.3/resolute/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.3.3

4.4/resolute/Dockerfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#
2+
# NOTE: THIS DOCKERFILE IS GENERATED VIA "update.sh"
3+
#
4+
# PLEASE DO NOT EDIT IT DIRECTLY.
5+
#
6+
7+
ARG BASE_IMAGE=posit/r-base
8+
FROM ${BASE_IMAGE}:resolute
9+
10+
ARG R_VERSION=4.4.3
11+
ARG OS_IDENTIFIER=ubuntu-2604
12+
13+
# Install R
14+
RUN wget "https://cdn.posit.co/r/${OS_IDENTIFIER}/pkgs/r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
15+
apt-get update -qq && \
16+
DEBIAN_FRONTEND=noninteractive apt-get install -f -y "./r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
17+
ln -s "/opt/R/${R_VERSION}/bin/R" /usr/bin/R && \
18+
ln -s "/opt/R/${R_VERSION}/bin/Rscript" /usr/bin/Rscript && \
19+
ln -s "/opt/R/${R_VERSION}/lib/R" /usr/lib/R && \
20+
rm "r-${R_VERSION}_1_$(dpkg --print-architecture).deb" && \
21+
rm -rf /var/lib/apt/lists/*
22+
23+
CMD ["R"]

4.4/resolute/version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4.4.3

0 commit comments

Comments
 (0)