Skip to content

Commit 73000ef

Browse files
accidentally deleted cran somehow and adding back
1 parent ff8eb81 commit 73000ef

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
FROM rocker/tidyverse:latest
22
LABEL maintainer="cwright2@fredhutch.org"
33

4-
WORKDIR /rocker-build/
54

65
# System dependencies for R packages
76
RUN 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

3231
RUN Rscript -e "options(warn = 2);install.packages( \

0 commit comments

Comments
 (0)