We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bb8eb7 commit 9351d84Copy full SHA for 9351d84
Dockerfile
@@ -20,8 +20,8 @@ RUN sed -i.bak "/^#.*deb-src.*universe$/s/^# //g" /etc/apt/sources.list \
20
&& wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc \
21
&& apt -y build-dep r-base-dev \
22
&& apt -y install r-base-dev \
23
- && Rscript -e "install.packages('languageserver', repos='https://cran.rstudio.com')" \
24
- && Rscript -e "install.packages('httpgd', repos='https://cran.rstudio.com')" \
+ && Rscript -e "install.packages(c('languageserver', 'httpgd'), \
+ repos = c(runiverse='https://r-universe.dev', CRAN='https://cloud.r-project.org'))" \
25
&& rm -rf /var/lib/apt/lists/*
26
27
ARG CONTAINER_VERSION
0 commit comments