From bd32fe9968b4c85c8f2de77f50a30a1188e5e94e Mon Sep 17 00:00:00 2001 From: Robert Schardt Date: Wed, 25 Sep 2024 15:25:36 +0200 Subject: [PATCH] Change: Update gvm-libs image in prod.Dockerfile and build.Dockerfile --- .docker/build.Dockerfile | 2 +- .docker/prod.Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.docker/build.Dockerfile b/.docker/build.Dockerfile index f296797..931a160 100644 --- a/.docker/build.Dockerfile +++ b/.docker/build.Dockerfile @@ -1,6 +1,6 @@ ARG VERSION=unstable -FROM greenbone/gvm-libs:$VERSION +FROM registry.community.greenbone.net/community/gvm-libs:${VERSION} LABEL deprecated="This image is deprecated and may be removed soon." RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y \ diff --git a/.docker/prod.Dockerfile b/.docker/prod.Dockerfile index 4677310..b837a61 100644 --- a/.docker/prod.Dockerfile +++ b/.docker/prod.Dockerfile @@ -1,7 +1,7 @@ ARG VERSION=edge # this allows to work on forked repository ARG REPOSITORY=greenbone/boreas -FROM greenbone/gvm-libs:$VERSION AS build +FROM registry.community.greenbone.net/community/gvm-libs:${VERSION} AS build ARG DEBIAN_FRONTEND=noninteractive @@ -9,9 +9,9 @@ COPY . /source RUN sh /source/.github/install-dependencies.sh RUN cmake -DCMAKE_BUILD_TYPE=Release -B/build /source -RUN DESTDIR=/install cmake --build /build -- install +RUN DESTDIR=/install cmake --build /build -- install -FROM greenbone/gvm-libs:$VERSION +FROM registry.community.greenbone.net/community/gvm-libs:${VERSION} COPY --from=build /install/ /