libcurl4-gnutls-dev replaces libcurl4-openssl-dev.

This commit is contained in:
Andrea Dell'Amico 2024-04-17 10:49:07 +02:00
parent 50c72f5fe1
commit c072e3324c
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 5 additions and 2 deletions

View File

@ -9,6 +9,9 @@ LABEL org.d4science.image.licenses="EUPL-1.2" \
ENV DEBIAN_FRONTEND noninteractive
# Upgrade, install some R dependencies and base python3
# Add libcurl4-gnutls-dev and remove libcurl4-openssl-dev because
#
# libraptor2-dev : Depends: libcurl4-gnutls-dev but it is not installable
RUN apt-get update --yes && \
apt-get dist-upgrade --yes && \
apt-get install --yes --no-install-recommends \
@ -26,7 +29,6 @@ RUN apt-get update --yes && \
libv8-dev \
libsecret-1-dev \
librdf0-dev \
libcurl4-openssl-dev \
libgit2-dev \
libxslt-dev \
librdf0 \
@ -42,7 +44,8 @@ RUN apt-get update --yes && \
libjq-dev \
libprotobuf-dev \
protobuf-compiler \
libproj-dev
libproj-dev \
libcurl4-gnutls-dev
COPY install2r-packages.txt /rocker_scripts
RUN for f in `cat //rocker_scripts/install2r-packages.txt` ; do install2.r --error --skipinstalled --ncpus -1 $f || exit 1 ; done