File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11FROM rocker/tidyverse:latest
22LABEL maintainer="cwright2@fredhutch.org"
33
4- WORKDIR /rocker-build/
54
65# System dependencies for R packages
76RUN apt-get update && apt-get install -y \
@@ -22,11 +21,11 @@ RUN apt-get update && apt-get install -y \
2221 libcairo2-dev \
2322 libgit2-dev \
2423
25- RUN Rscript -e "options(warn = 2);install.packages('stringr')"
24+ RUN Rscript -e "options(warn = 2);install.packages('stringr', repos = 'https://cloud.r-project.org/' )"
2625
27- RUN Rscript -e "options(warn = 2);install.packages('sf')"
26+ RUN Rscript -e "options(warn = 2);install.packages('sf', repos = 'https://cloud.r-project.org/' )"
2827
29- RUN Rscript -e "options(warn = 2);install.packages('naniar')"
28+ RUN Rscript -e "options(warn = 2);install.packages('naniar', repos = 'https://cloud.r-project.org/' )"
3029
3130
3231RUN Rscript -e "options(warn = 2);install.packages( \
You can’t perform that action at this time.
0 commit comments