diff --git a/Dockerfile b/Dockerfile index 08a7a2e..33e1110 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,16 @@ RUN apt-get update \ 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 apt-get update && \ + apt-get install -y libproj22 libudunits2.so.0 libgdal30 && \ + rm -rf /var/lib/apt/lists/* RUN R -q -e 'install.packages("remotes"); remotes::install_github("rundel/checklist")' RUN R -q -e 'install.packages("remotes"); remotes::install_github("r-spatial/sf")' +RUN apt-get clean \ + && rm -rf /var/lib/apt/lists/* + CMD ["bash"]