Skip to content

Commit

Permalink
Update Dockerfile -- install curl
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki authored Jan 20, 2024
1 parent bd03ff5 commit 50aa8d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y \
r-base-dev
RUN apt-get install libcurl4-openssl-dev
RUN Rscript -e "try(utils::install.packages('remotes', repos='https://cran.rstudio.com', dependencies=TRUE), silent=TRUE)"
RUN Rscript -e "try(utils::install.packages('curl', repos='https://cran.rstudio.com', dependencies=TRUE), silent=TRUE)"
RUN Rscript -e "try(utils::install.packages('ranger', repos='https://cran.rstudio.com', dependencies=TRUE), silent=TRUE)"
RUN Rscript -e "try(utils::install.packages('e1071', repos='https://cran.rstudio.com', dependencies=TRUE), silent=TRUE)"
RUN Rscript -e "try(utils::install.packages('fBasics', repos='https://cran.rstudio.com', dependencies=TRUE), silent=TRUE)"
Expand All @@ -33,4 +34,4 @@ RUN julia --project=/app -e 'using Pkg; Pkg.add("RCall"); Pkg.add("Distributions
RUN julia --project=/app -e 'using Pkg; Pkg.instantiate(); Pkg.build()'

# Specify the default command to run when the container starts
CMD ["julia", "--project=/app", "-e", "using Pkg; Pkg.test()"]
CMD ["julia", "--project=/app", "-e", "using Pkg; Pkg.test()"]

0 comments on commit 50aa8d5

Please sign in to comment.