Skip to content

Commit

Permalink
Downgrade rstudio
Browse files Browse the repository at this point in the history
  • Loading branch information
dafeliton committed Mar 6, 2024
1 parent d68a0f5 commit fcdaf7f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion images/datascience-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ ENV DEBIAN_FRONTEND noninteractive
ENV DEBCONF_NOWARNINGS="yes"
RUN apt-get update -y && \
apt-get -qq install -y --no-install-recommends \
BADBADBAD \
git \
curl \
rsync \
Expand Down
7 changes: 5 additions & 2 deletions images/rstudio-notebook/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
ARG BASE_TAG=latest
FROM ghcr.io/ucsd-ets/datascience-notebook:${BASE_TAG}
FROM ghcr.io/ucsd-ets/datascience-notebook:2024.3-scipy-ml-fixup

USER root

RUN mamba install r-base=4.1.3 -c conda-forge

# RStudio Setup
## Follow instructions at https://www.rstudio.com/products/rstudio/download-server/
ENV RSTUDIO_PKG=rstudio-server-2023.12.1-402-amd64.deb
Expand All @@ -17,7 +19,8 @@ RUN ln -s /opt/conda/bin/R /usr/bin/R && \
echo '/opt/conda/lib/R/lib' > /etc/ld.so.conf.d/r.conf && /sbin/ldconfig -v && \
apt-get clean && rm -rf /var/lib/apt/lists/* && \
rm -f /usr/bin/R && \
chmod -R g=u /var/lib/rstudio-server
chmod -R g=u /var/lib/rstudio-server && \
service rstudio-server restart

RUN pip install jupyter-rsession-proxy

Expand Down

0 comments on commit fcdaf7f

Please sign in to comment.