Skip to content

Commit a0c7cd7

Browse files
committed
RHOAIENG-16384: Fix build error of Rcpp for R 4.4.2
More information in [1]. Note: I updated to 1.0.14 version directly as this is what is needed in a subsequent step by tidyverse package anyway. * [1] https://issues.redhat.com/browse/RHOAIENG-16384
1 parent 58e788d commit a0c7cd7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rstudio/c9s-python-3.11/Dockerfile.cpu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ USER 1001
2121
RUN curl -L https://mirror.openshift.com/pub/openshift-v4/$(uname -m)/clients/ocp/stable/openshift-client-linux.tar.gz \
2222
-o /tmp/openshift-client-linux.tar.gz && \
2323
tar -xzvf /tmp/openshift-client-linux.tar.gz oc && \
24-
rm -f /tmp/openshift-client-linux.tar.gz
24+
rm -f /tmp/openshift-client-linux.tar.gz
2525

2626
WORKDIR /opt/app-root/src
2727

@@ -87,7 +87,7 @@ RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel har
8787
# Install R packages
8888
RUN R -e "install.packages('remotes')"
8989
RUN R -e "require('remotes'); \
90-
remotes::install_version('Rcpp','1.0.13'); \
90+
remotes::install_version('Rcpp','1.0.14'); \
9191
remotes::install_version('tidyverse','2.0.0'); \
9292
remotes::install_version('tidymodels','1.2.0'); \
9393
remotes::install_version('plumber','1.2.2'); \

rstudio/c9s-python-3.11/Dockerfile.cuda

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ USER 1001
2121
RUN curl -L https://mirror.openshift.com/pub/openshift-v4/$(uname -m)/clients/ocp/stable/openshift-client-linux.tar.gz \
2222
-o /tmp/openshift-client-linux.tar.gz && \
2323
tar -xzvf /tmp/openshift-client-linux.tar.gz oc && \
24-
rm -f /tmp/openshift-client-linux.tar.gz
24+
rm -f /tmp/openshift-client-linux.tar.gz
2525

2626
WORKDIR /opt/app-root/src
2727

@@ -211,7 +211,7 @@ RUN dnf install -y libsodium-devel.x86_64 libgit2-devel.x86_64 libcurl-devel har
211211
# Install R packages
212212
RUN R -e "install.packages('remotes')"
213213
RUN R -e "require('remotes'); \
214-
remotes::install_version('Rcpp','1.0.13'); \
214+
remotes::install_version('Rcpp','1.0.14'); \
215215
remotes::install_version('tidyverse','2.0.0'); \
216216
remotes::install_version('tidymodels','1.2.0'); \
217217
remotes::install_version('plumber','1.2.2'); \

0 commit comments

Comments
 (0)