Skip to content

Commit

Permalink
Added back the dependents from DukeStatSci/r_gh_actions that are ment…
Browse files Browse the repository at this point in the history
…ioned in relation to docker and {sf}
  • Loading branch information
Lextuga007 committed Jun 14, 2024
1 parent cb608be commit c301328
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,24 @@ ADD Rprofile.site /usr/lib/R/etc/Rprofile.site

RUN apt-get update \
&& apt-get upgrade -y

RUN apt-get install -y --no-install-recommends \
libudunits2-dev libgdal-dev libgeos-dev \
libproj-dev pandoc libmagick++-dev \
libglpk-dev libnode-dev \
wget git rsync

RUN wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.4.550/quarto-1.4.550-linux-amd64.deb \
&& DEBIAN_FRONTEND=noninteractive apt install ./quarto-*-linux-amd64.deb \
&& rm quarto-*-linux-amd64.deb

RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN install.r remotes rmarkdown quarto tidyverse sf \
&& installGithub.r rundel/checklist

RUN R -q -e 'install.packages("remotes"); remotes::install_github("rundel/checklist")'

RUN apt-get clean \
&& rm -rf /var/lib/apt/lists/*

CMD ["bash"]

0 comments on commit c301328

Please sign in to comment.