Created
February 24, 2026 06:45
-
-
Save jeroen/74764c36a0c6c20e77e60292b6b8627a to your computer and use it in GitHub Desktop.
Demo base-R Linux binaries on R-4.6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ghcr.io/r-lib/rig/ubuntu-24.04-devel | |
| RUN echo "R_PLATFORM_PKGTYPE=linux.binary.noble-$(arch)" >> "$HOME/.Renviron" | |
| RUN R -e "print(.Platform$pkgType)" | |
| RUN R -e "install.packages('tidyverse', repos = 'https://cran.r-universe.dev')" | |
| RUN R -e "library(tidyverse)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment