Skip to content

Commit 253e0d9

Browse files
committed
feat(upgrade): bi-annual RStudio package update
This commit is related to the ongoing work to release the `2025a` software upgrade. Upgrades: - `R` - `4.4.1` -> `4.4.3` - `RStudio` - rstudio-server-rhel-2024.04.2-764-x86_64.rpm -> rstudio-server-rhel-2024.12.1-563-x86_64.rpm - `tidymodels` - `1.2.0` -> `1.3.0` - `plumber` - `1.2.2` -> `1.3.0` A couple other "quality of life" improvements were included: - Refactored `Dockerfile` to combine `RUN` statements where obvious/low-risk - Better use of `ARG` references to reduce copy-pasta in `Dockerfile` instructions - `install_packages.R` script externalizes the userland software installs in an external script to better "share" across `cpu` + `cuda` `Dockerfile` variants - Fixed issue(s) with `kustomize` `cuda` `overlay` so now `kubectl apply -k overlays/accelerator/cuda` works Related-to: https://issues.redhat.com/browse/RHOAIENG-19484
1 parent 545e4be commit 253e0d9

File tree

5 files changed

+65
-53
lines changed

5 files changed

+65
-53
lines changed

rstudio/c9s-python-3.11/Dockerfile.cpu

+24-25
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ LABEL name="odh-notebook-rstudio-server-c9s-python-3.11" \
4646

4747
USER 0
4848

49-
ENV R_VERSION=4.4.1
49+
ENV R_VERSION=4.4.3
5050

5151
# Install R
5252
RUN yum install -y yum-utils && \
@@ -60,39 +60,38 @@ RUN yum install -y yum-utils && \
6060
yum -y clean all --enablerepo='*'
6161

6262
# set R library to default (used in install.r from littler)
63-
RUN chmod -R a+w /usr/lib64/R/library
6463
ENV LIBLOC=/usr/lib64/R/library
65-
66-
# set User R Library path
67-
RUN mkdir -p /opt/app-root/bin/Rpackages/4.4 && chmod -R a+w /opt/app-root/bin/Rpackages/4.4
6864
ENV R_LIBS_USER=/opt/app-root/bin/Rpackages/4.4
6965

66+
RUN chmod -R a+w ${LIBLOC} && \
67+
# create User R Library path
68+
mkdir -p ${R_LIBS_USER} && \
69+
chmod -R a+w ${R_LIBS_USER}
70+
7071
WORKDIR /tmp/
7172

7273
# Install RStudio
73-
RUN wget --progress=dot:giga https://download2.rstudio.org/server/rhel9/x86_64/rstudio-server-rhel-2024.04.2-764-x86_64.rpm && \
74-
yum install -y rstudio-server-rhel-2024.04.2-764-x86_64.rpm && \
75-
rm rstudio-server-rhel-2024.04.2-764-x86_64.rpm && \
76-
yum -y clean all --enablerepo='*'
77-
78-
# Specific RStudio config and fixes
79-
RUN chmod 1777 /var/run/rstudio-server && \
80-
mkdir -p /usr/share/doc/R
74+
ARG RSTUDIO_RPM=rstudio-server-rhel-2024.12.1-563-x86_64.rpm
75+
RUN wget --progress=dot:giga https://download2.rstudio.org/server/rhel8/x86_64/${RSTUDIO_RPM} && \
76+
yum install -y ${RSTUDIO_RPM} && \
77+
rm ${RSTUDIO_RPM} && \
78+
yum -y clean all --enablerepo='*' && \
79+
# Specific RStudio config and fixes
80+
chmod 1777 /var/run/rstudio-server && \
81+
mkdir -p /usr/share/doc/R && \
82+
# package installation
83+
# install necessary texlive-framed package to make Knit R markup to PDF rendering possible
84+
dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" texlive-framed && \
85+
dnf clean all && \
86+
rm -rf /var/cache/yum
87+
8188
COPY ${RSTUDIO_SOURCE_CODE}/rsession.conf /etc/rstudio/rsession.conf
8289

83-
# package installation
84-
# install necessary texlive-framed package to make Knit R markup to PDF rendering possible
85-
RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" texlive-framed \
86-
&& dnf clean all && rm -rf /var/cache/yum
8790
# Install R packages
88-
RUN R -e "install.packages('remotes')"
89-
RUN R -e "require('remotes'); \
90-
remotes::install_version('Rcpp','1.0.14'); \
91-
remotes::install_version('tidyverse','2.0.0'); \
92-
remotes::install_version('tidymodels','1.2.0'); \
93-
remotes::install_version('plumber','1.2.2'); \
94-
remotes::install_version('vetiver','0.2.5'); \
95-
remotes::install_version('devtools','2.4.5');"
91+
# https://cran.r-project.org/web/packages
92+
COPY ${RSTUDIO_SOURCE_CODE}/install_packages.R ./
93+
RUN R -f ./install_packages.R && \
94+
rm ./install_packages.R
9695

9796
# Install NGINX to proxy RStudio and pass probes check
9897
ENV NGINX_VERSION=1.24 \

rstudio/c9s-python-3.11/Dockerfile.cuda

+25-26
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ RUN yum install -y \
137137
${NV_CUDNN_PACKAGE_DEV} \
138138
&& yum clean all \
139139
&& rm -rf /var/cache/yum/*
140-
140+
141141
# Set this flag so that libraries can find the location of CUDA
142142
ENV XLA_FLAGS=--xla_gpu_cuda_data_dir=/usr/local/cuda
143143

@@ -170,7 +170,7 @@ LABEL name="odh-notebook-rstudio-server-cuda-c9s-python-3.11" \
170170

171171
USER 0
172172

173-
ENV R_VERSION=4.4.1
173+
ENV R_VERSION=4.4.3
174174

175175
# Install R
176176
RUN yum install -y yum-utils && \
@@ -184,39 +184,38 @@ RUN yum install -y yum-utils && \
184184
yum -y clean all --enablerepo='*'
185185

186186
# set R library to default (used in install.r from littler)
187-
RUN chmod -R a+w /usr/lib64/R/library
188187
ENV LIBLOC=/usr/lib64/R/library
189-
190-
# set User R Library path
191-
RUN mkdir -p /opt/app-root/bin/Rpackages/4.4 && chmod -R a+w /opt/app-root/bin/Rpackages/4.4
192188
ENV R_LIBS_USER=/opt/app-root/bin/Rpackages/4.4
193189

190+
RUN chmod -R a+w ${LIBLOC} && \
191+
# create User R Library path
192+
mkdir -p ${R_LIBS_USER} && \
193+
chmod -R a+w ${R_LIBS_USER}
194+
194195
WORKDIR /tmp/
195196

196197
# Install RStudio
197-
RUN wget --progress=dot:giga https://download2.rstudio.org/server/rhel9/x86_64/rstudio-server-rhel-2024.04.2-764-x86_64.rpm && \
198-
yum install -y rstudio-server-rhel-2024.04.2-764-x86_64.rpm && \
199-
rm rstudio-server-rhel-2024.04.2-764-x86_64.rpm && \
200-
yum -y clean all --enablerepo='*'
201-
202-
# Specific RStudio config and fixes
203-
RUN chmod 1777 /var/run/rstudio-server && \
204-
mkdir -p /usr/share/doc/R
198+
ARG RSTUDIO_RPM=rstudio-server-rhel-2024.12.1-563-x86_64.rpm
199+
RUN wget --progress=dot:giga https://download2.rstudio.org/server/rhel8/x86_64/${RSTUDIO_RPM} && \
200+
yum install -y ${RSTUDIO_RPM} && \
201+
rm ${RSTUDIO_RPM} && \
202+
yum -y clean all --enablerepo='*' && \
203+
# Specific RStudio config and fixes
204+
chmod 1777 /var/run/rstudio-server && \
205+
mkdir -p /usr/share/doc/R && \
206+
# package installation
207+
# install necessary texlive-framed package to make Knit R markup to PDF rendering possible
208+
dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" texlive-framed && \
209+
dnf clean all && \
210+
rm -rf /var/cache/yum
211+
205212
COPY ${RSTUDIO_SOURCE_CODE}/rsession.conf /etc/rstudio/rsession.conf
206213

207-
# package installation
208-
# install necessary texlive-framed package to make Knit R markup to PDF rendering possible
209-
RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel harfbuzz-devel.x86_64 fribidi-devel.x86_64 cmake "flexiblas-*" texlive-framed \
210-
&& dnf clean all && rm -rf /var/cache/yum
211214
# Install R packages
212-
RUN R -e "install.packages('remotes')"
213-
RUN R -e "require('remotes'); \
214-
remotes::install_version('Rcpp','1.0.14'); \
215-
remotes::install_version('tidyverse','2.0.0'); \
216-
remotes::install_version('tidymodels','1.2.0'); \
217-
remotes::install_version('plumber','1.2.2'); \
218-
remotes::install_version('vetiver','0.2.5'); \
219-
remotes::install_version('devtools','2.4.5');"
215+
# https://cran.r-project.org/web/packages
216+
COPY ${RSTUDIO_SOURCE_CODE}/install_packages.R ./
217+
RUN R -f ./install_packages.R && \
218+
rm ./install_packages.R
220219

221220
# Install NGINX to proxy RStudio and pass probes check
222221
ENV NGINX_VERSION=1.24 \
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# install_packages.R
2+
3+
# Load or install 'remotes' package
4+
if (!requireNamespace("remotes", quietly = TRUE)) {
5+
install.packages("remotes")
6+
}
7+
8+
# Install specific versions of packages
9+
remotes::install_version('Rcpp', '1.0.14')
10+
remotes::install_version('tidyverse', '2.0.0')
11+
remotes::install_version('tidymodels', '1.3.0')
12+
remotes::install_version('plumber', '1.3.0')
13+
remotes::install_version('vetiver', '0.2.5')
14+
remotes::install_version('devtools', '2.4.5')

rstudio/c9s-python-3.11/kustomize/components/accelerator/pod-patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: pod
66
spec:
77
containers:
8-
- name: runtime
8+
- name: rstudio
99
resources:
1010
limits:
1111
memory: 6Gi

rstudio/c9s-python-3.11/kustomize/overlays/accelerator/cuda/pod-patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
nodeSelector:
88
accelerator: cuda
99
containers:
10-
- name: runtime
10+
- name: rstudio
1111
resources:
1212
limits:
1313
nvidia.com/gpu: '1'

0 commit comments

Comments
 (0)