From b45986a8dd7d0203e5632672bfc6189677d82d45 Mon Sep 17 00:00:00 2001 From: shane knapp Date: Mon, 12 Aug 2024 12:53:31 -0700 Subject: [PATCH] dev hub --- deployments/dev/images/default/Dockerfile | 6 +++--- deployments/dev/images/default/Rprofile.site | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deployments/dev/images/default/Dockerfile b/deployments/dev/images/default/Dockerfile index f4dc81b29..bf9307b03 100644 --- a/deployments/dev/images/default/Dockerfile +++ b/deployments/dev/images/default/Dockerfile @@ -34,8 +34,8 @@ RUN apt-get -qq update --yes && \ # These packages must be installed into the base stage since they are in system # paths rather than /srv. # Pre-built R packages from rspm are built against system libs in jammy. -ENV R_VERSION=4.3.2-1.2204.0 -ENV LITTLER_VERSION=0.3.18-2.2204.0 +ENV R_VERSION=4.4.1-1.2204.0 +ENV LITTLER_VERSION=0.3.19-1.2204.0 RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 RUN echo "deb https://cloud.r-project.org/bin/linux/ubuntu jammy-cran40/" > /etc/apt/sources.list.d/cran.list RUN curl --silent --location --fail https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc > /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc @@ -45,7 +45,7 @@ RUN apt-get update -qq --yes > /dev/null && \ r-base-dev=${R_VERSION} \ littler=${LITTLER_VERSION} > /dev/null -ENV RSTUDIO_URL https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2023.06.0-421-amd64.deb +ENV RSTUDIO_URL=https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2024.04.2-764-amd64.deb RUN curl --silent --location --fail ${RSTUDIO_URL} > /tmp/rstudio.deb && \ apt install --no-install-recommends --yes /tmp/rstudio.deb && \ rm /tmp/rstudio.deb diff --git a/deployments/dev/images/default/Rprofile.site b/deployments/dev/images/default/Rprofile.site index 51f9daba8..a75374482 100644 --- a/deployments/dev/images/default/Rprofile.site +++ b/deployments/dev/images/default/Rprofile.site @@ -17,7 +17,7 @@ options( options( HTTPUserAgent = sprintf( "RStudio Server (%s); R (%s)", - "2022.7.1.554", + "2024.04.2.764", paste(getRversion(), R.version$platform, R.version$arch, R.version$os) ) )