Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cuda/Dockerfile
Original file line number Diff line number Diff line change
@@ -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)"

Expand Down
Loading