diff --git a/docker/reprex/alpine.sh b/docker/reprex/alpine.sh new file mode 100644 index 0000000..9fa56c0 --- /dev/null +++ b/docker/reprex/alpine.sh @@ -0,0 +1,5 @@ +docker run --rm -it --platform linux/arm64 alpine sh + +apk add --no-cache R R-dev g++ +install.packages('', repos = "cloud.r-project.org") + diff --git a/docker/reprex/ubuntu-24.sh b/docker/reprex/ubuntu-24.sh new file mode 100644 index 0000000..0a5e3dd --- /dev/null +++ b/docker/reprex/ubuntu-24.sh @@ -0,0 +1,5 @@ +docker run --rm -it --platform linux/arm64 ubuntu:noble bash + +export DEBIAN_FRONTEND=noninteractive +apt update && apt install -y r-base-core +R -q -e 'install.packages("" \ No newline at end of file