Skip to content

Commit

Permalink
Added dependencies and particularly libudunits2.so.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lextuga007 committed Jun 17, 2024
1 parent 8e7b45f commit 07b456b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 07b456b

Please sign in to comment.