From 237a7623e4b105fb95e6e2618b0acd4bc33efacf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=91=D0=B0?= =?UTF-8?q?=D0=B4=D1=8F=D0=B5=D0=B2?= Date: Thu, 31 Oct 2024 13:12:46 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 528783d..e930fd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ COPY . . RUN go build -trimpath -o transocks ./cmd/transocks # Now copy it into our base image. -FROM gcr.io/distroless/static-debian11:nonroot +FROM gcr.io/distroless/static-debian12:nonroot COPY --from=build /usr/src/transocks/transocks /usr/bin/transocks @@ -20,9 +20,9 @@ ARG IMAGE_REVISION LABEL org.opencontainers.image.created="${IMAGE_CREATED}" \ org.opencontainers.image.authors="MouseSoft" \ - org.opencontainers.image.url="https://git.mousesoft.ru/ms/transocks" \ - org.opencontainers.image.documentation="https://git.mousesoft.ru/ms/transocks/src/branch/master/README.md" \ - org.opencontainers.image.source="https://git.mousesoft.ru/ms/transocks" \ + org.opencontainers.image.url="https://git.mousesoft.ru/alexey/transocks" \ + org.opencontainers.image.documentation="https://git.mousesoft.ru/alexey/transocks/src/branch/master/README.md" \ + org.opencontainers.image.source="https://git.mousesoft.ru/alexey/transocks" \ org.opencontainers.image.version="${IMAGE_VERSION}" \ org.opencontainers.image.revision="${IMAGE_REVISION}" \ org.opencontainers.image.vendor="MouseSoft" \