Skip to content

Commit 382e048

Browse files
committed
R image: update python pangeo-notebook and rstudio-server, to recent versions
1 parent 41445c1 commit 382e048

File tree

3 files changed

+150
-130
lines changed

3 files changed

+150
-130
lines changed

r/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ RUN --mount=type=cache,id=ohw_r_apt,target=/var/cache/apt \
4040
sudo \
4141
libapparmor1 \
4242
libpq5 \
43+
libssl-dev \
4344
lsb-release \
4445
ca-certificates \
4546
libclang-dev > /dev/null \
@@ -51,8 +52,12 @@ RUN echo "${LC_ALL} UTF-8" > /etc/locale.gen && \
5152

5253
# # Set path where R packages are installed
5354
# # Download and install rstudio manually
55+
# 11/13/2024: (using $ cat /etc/os-release) 2i2c hub currently runs on Ubuntu jammy (22), not bionic (18).
56+
# Drilling down to jammy at https://posit.co/download/rstudio-server/, it looks like the latest rstudio-server deb is:
57+
ENV RSTUDIO_URL https://download2.rstudio.org/server/jammy/amd64/rstudio-server-2024.09.1-394-amd64.deb
58+
# # (11/13/2024: The comment below is at from 2022 or earlier)
5459
# # Newer one has bug that doesn't work with jupyter-rsession-proxy
55-
ENV RSTUDIO_URL https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2022.07.1-554-amd64.deb
60+
# ENV RSTUDIO_URL https://download2.rstudio.org/server/bionic/amd64/rstudio-server-2022.07.1-554-amd64.deb
5661
# ENV RSTUDIO_URL https://download2.rstudio.org/server/bionic/amd64/rstudio-server-1.2.5042-amd64.deb
5762
RUN curl --silent --location --fail ${RSTUDIO_URL} > /tmp/rstudio.deb && \
5863
dpkg -i /tmp/rstudio.deb && \

0 commit comments

Comments
 (0)