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/ /