From 09a96020638002372d546f468f161ce01cced8b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <joerg.sachse@slub-dresden.de> Date: Fri, 30 Aug 2024 11:52:05 +0200 Subject: [PATCH] Update file Dockerfile --- gitlab-ci/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gitlab-ci/Dockerfile b/gitlab-ci/Dockerfile index 4a903fd..c830f85 100644 --- a/gitlab-ci/Dockerfile +++ b/gitlab-ci/Dockerfile @@ -12,9 +12,10 @@ ENV PATH="$PATH:$EXTLIB/bin" ENV PERL_CPANM_HOME="/cpanm/" RUN apt-get update; \ - apt-get install -y --no-install-recommends gnupg wget ca-certificates; \ - wget -O - https://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key | apt-key add - ; \ - echo "deb https://sdvdebianrepo.slub-dresden.de/deb-repository "${DEBIAN_RELEASE}" main" > /etc/apt/sources.list.d/slub.list; + apt-get -y upgrade; \ + apt-get install -y --no-install-recommends gnupg wget; \ + wget -O - http://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key | apt-key add - ; \ + echo "deb http://sdvdebianrepo.slub-dresden.de/deb-repository "${DEBIAN_RELEASE}" main" > /etc/apt/sources.list.d/slub.list; RUN if [ -f /etc/apt/sources.list ]; then \ sed -i -e "s/^\(\(deb\|Components\).*main\( contrib\)\?\)$/\1 non-free/g" /etc/apt/sources.list; \ -- GitLab