From 7358056d740b92874bfb84201a8f94a05f4c625c Mon Sep 17 00:00:00 2001 From: dafeliton Date: Mon, 22 Jul 2024 13:57:57 -0700 Subject: [PATCH] test 2024 rstudio just in case --- images/rstudio-notebook/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/images/rstudio-notebook/Dockerfile b/images/rstudio-notebook/Dockerfile index d07faf9f..db504d2f 100644 --- a/images/rstudio-notebook/Dockerfile +++ b/images/rstudio-notebook/Dockerfile @@ -5,9 +5,9 @@ USER root # RStudio Setup -# Ubuntu 22 setup with v 2023.12.1 +# Ubuntu 22 setup with v 2024.04.2-764 ## Follow instructions at https://www.rstudio.com/products/rstudio/download-server/ -ENV RSTUDIO_PKG=rstudio-server-2023.12.1-402-amd64.deb +ENV RSTUDIO_PKG=rstudio-server-2024.04.2-764-amd64.deb ENV RSTUDIO_URL=https://download2.rstudio.org/server/jammy/amd64/${RSTUDIO_PKG} ## rstudio installation expects R to live in /usr/bin, /bin/, etc. @@ -24,9 +24,6 @@ RUN ln -s /opt/conda/bin/R /usr/bin/R && \ service rstudio-server restart RUN pip install jupyter-rsession-proxy -# currently we have an issue where the user's default working dir is ALWAYS /home/jovyan. -# perhaps fix in our fork below? -#RUN pip install git+https://github.com/ucsd-ets/datahub-jupyter-rsession-proxy.git RUN mkdir -p /etc/rstudio && echo 'auth-minimum-user-id=100' >> /etc/rstudio/rserver.conf