Skip to content

Commit

Permalink
only intall libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
j-i-l committed Dec 21, 2023
1 parent 61d4a1c commit 0307150
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions containers/debian/clang/R-devel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ RUN R -e "install.packages('BiocManager')" \
# - sf
RUN apt-get -y update && apt-get install -y \
libudunits2-dev libgdal-dev libgeos-dev libproj-dev \
RUN R -e "install.packages('sf')"
# RUN R -e "install.packages('sf')"
# - gsl
RUN apt-get -y update && apt-get install -y \
libgsl-dev
RUN R -e "install.packages('gsl')"
# RUN R -e "install.packages('gsl')"
# - fmesher
RUN apt-get update && apt-get install -y --no-install-recommends \
libudunits2-dev
RUN R -e "install.packages('fmesher')"
# RUN R -e "install.packages('fmesher')"
# - INLA
RUN R -e "install.packages('INLA',repos=c(getOption('repos'),INLA='https://inla.r-inla-download.org/R/stable'), dep=TRUE)"

0 comments on commit 0307150

Please sign in to comment.