diff --git a/4.1/jammy/Dockerfile b/4.1/jammy/Dockerfile index c5de75a..61d3dbd 100644 --- a/4.1/jammy/Dockerfile +++ b/4.1/jammy/Dockerfile @@ -7,7 +7,7 @@ ARG BASE_IMAGE=rstudio/r-base FROM ${BASE_IMAGE}:jammy -ARG R_VERSION=4.1.2 +ARG R_VERSION=4.1.3 ARG OS_IDENTIFIER=ubuntu-2204 # Install R diff --git a/4.1/jammy/hooks/post_push b/4.1/jammy/hooks/post_push index ebc70dc..9505c50 100644 --- a/4.1/jammy/hooks/post_push +++ b/4.1/jammy/hooks/post_push @@ -5,4 +5,4 @@ function add_tag() { docker push $DOCKER_REPO:$1 } -add_tag 4.1.2-jammy +add_tag 4.1.3-jammy diff --git a/devel/jammy/Dockerfile b/devel/jammy/Dockerfile index b7f5800..e479625 100644 --- a/devel/jammy/Dockerfile +++ b/devel/jammy/Dockerfile @@ -20,4 +20,4 @@ RUN wget https://cdn.rstudio.com/r/${OS_IDENTIFIER}/pkgs/r-${R_VERSION}_1_amd64. rm r-${R_VERSION}_1_amd64.deb && \ rm -rf /var/lib/apt/lists/* -CMD ["R"] \ No newline at end of file +CMD ["R"] diff --git a/update.sh b/update.sh index 9883aa8..6b98fe2 100755 --- a/update.sh +++ b/update.sh @@ -16,6 +16,7 @@ declare -A r_versions=( declare -A os_identifiers=( [bionic]='ubuntu-1804' [focal]='ubuntu-2004' + [jammy]='ubuntu-2204' [centos7]='centos-7' [rockylinux8]='centos-8' [opensuse42]='opensuse-42' @@ -40,7 +41,7 @@ for version in "${!r_versions[@]}"; do mkdir -p $dir case "$variant" in - bionic|focal) template='ubuntu' + bionic|focal|jammy) template='ubuntu' ;; centos7|rockylinux8) template='centos' ;;