From ab3fe00804ffe62173e5636ce72f1bf7b9b8cd59 Mon Sep 17 00:00:00 2001 From: Sebastian Fischer Date: Sun, 19 Apr 2026 15:56:34 +0200 Subject: [PATCH] Revert "..." This reverts commit 00cb447f5f572ebffdb1ad3fa0360de24fa3c122. --- cuda/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cuda/Dockerfile b/cuda/Dockerfile index 6565bf5..0186303 100644 --- a/cuda/Dockerfile +++ b/cuda/Dockerfile @@ -1,6 +1,12 @@ # -------- Build on cuda-base image -------- FROM sebffischer/anvil-cuda-base:latest +# Re-apply Rprofile.site setup in case the base image is an older cache +# that predates the cuda-base fix (PRs don't push a fresh cuda-base). +COPY .Rprofile /etc/Rprofile.site +ENV R_PROFILE=/etc/Rprofile.site +RUN R -q -e 'stopifnot(grepl("packagemanager.posit.co", getOption("repos")[["CRAN"]]))' + # -------- install R packages--------------------------- RUN R -q -e "install.packages('remotes', force = TRUE)"