From 15e1b457e96d6672cbc32105c601757fd12fb14e Mon Sep 17 00:00:00 2001 From: robert-schardt Date: Fri, 27 Sep 2024 07:37:01 +0200 Subject: [PATCH] Change: Update gvm-libs image in prod.Dockerfile and build.Dockerfile (#180) Co-authored-by: Robert Schardt --- .docker/build.Dockerfile | 2 +- .docker/prod.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.docker/build.Dockerfile b/.docker/build.Dockerfile index 44e0febcb..77c4b86fb 100644 --- a/.docker/build.Dockerfile +++ b/.docker/build.Dockerfile @@ -2,7 +2,7 @@ ARG GVM_LIBS_VERSION=oldstable # We want gvm-libs to be ready so we use the build docker image of gvm-libs -FROM greenbone/gvm-libs:$GVM_LIBS_VERSION +FROM registry.community.greenbone.net/community/gvm-libs:${GVM_LIBS_VERSION} # This will make apt-get install without question ARG DEBIAN_FRONTEND=noninteractive diff --git a/.docker/prod.Dockerfile b/.docker/prod.Dockerfile index fdff43940..3def718a6 100644 --- a/.docker/prod.Dockerfile +++ b/.docker/prod.Dockerfile @@ -27,7 +27,7 @@ RUN mkdir /build \ && cmake -DCMAKE_BUILD_TYPE=Release /source \ && make DESTDIR=/install install -FROM greenbone/gvm-libs:${GVM_LIBS_VERSION} +FROM registry.community.greenbone.net/community/gvm-libs:${GVM_LIBS_VERSION} ARG DEBIAN_FRONTEND=noninteractive