From f43d31aa82727f35b183065944cd6a049eec1121 Mon Sep 17 00:00:00 2001 From: Dou Mok Date: Tue, 17 Dec 2024 09:29:34 -0800 Subject: [PATCH] Revise rscript for 'install.packages' to include 'redland' and 'jqr' --- Docker/metadig-worker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/metadig-worker/Dockerfile b/Docker/metadig-worker/Dockerfile index 045ec624..24922775 100644 --- a/Docker/metadig-worker/Dockerfile +++ b/Docker/metadig-worker/Dockerfile @@ -34,7 +34,7 @@ ENV PATH="$PATH:$JAVA_HOME/bin" # Install required R packages RUN echo 'options(repos = c(CRAN = "http://cran.rstudio.com"))' >> /usr/lib/R/etc/Rprofile.site -RUN Rscript -e "install.packages(c('remotes', 'stringr', 'jsonlite'))" +RUN Rscript -e "install.packages(c('remotes', 'stringr', 'jsonlite', 'redland', 'jqr'))" RUN Rscript -e "remotes::install_github('NCEAS/metadig-r', ref = 'v.0.2.0')" RUN Rscript -e "remotes::install_github('NCEAS/metadig-rake', ref = 'develop')"