Skip to content

Commit

Permalink
debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
egillax committed Jul 30, 2024
1 parent 16c46bb commit 574f940
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ RUN apt-get -y update && apt-get install -y \
RUN R CMD javareconf


RUN Rscript -e "install.packages('pak', \
RUN Rscript -e "print(.Platform$pkgType); \
print(R.Version()$os); \
print(R.Version()$arch); \
install.packages('pak', \
repos = sprintf('https://r-lib.github.io/p/pak/stable/%s/%s/%s', \
.Platform$pkgType, R.Version()$os, R.Version()$arch))"

Expand Down

0 comments on commit 574f940

Please sign in to comment.