We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac63db commit 1b1de21Copy full SHA for 1b1de21
Dockerfile
@@ -2,7 +2,9 @@ ARG R_VERSION=4.2.2
2
3
FROM inseefrlab/onyxia-rstudio:r${R_VERSION}
4
RUN apt-get update && apt-get install -y cargo
5
+RUN apt-get install -y wget
6
+RUN wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
7
+RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
8
RUN R -e "install.packages('remotes', repos = c(CRAN = 'https://cloud.r-project.org'))"
9
COPY DESCRIPTION DESCRIPTION
10
RUN R -e 'remotes::install_deps(dependencies = TRUE)'
-RUN R -e 'webshot::install_phantomjs()'
0 commit comments