don't install package in dockerfile

This commit is contained in:
Patrick Schratz 2024-08-10 13:23:39 +02:00
commit a2fcfdff94
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -16,7 +16,6 @@ RUN R -q -e 'install.packages("pak", repos = sprintf("https://r-lib.github.io/p/
COPY . .
RUN R -q -e 'Sys.setenv(PKG_SYSREQS = TRUE, PKG_SYSREQS_VERBOSE = TRUE, PKG_SYSREQS_PLATFORM = "redhat-8"); pak::pak()'
RUN R CMD INSTALL .
RUN rm -rf arm-binaries-r
CMD ["/bin/bash"]