From aadd75fffd8bfafa281218cd5d8afbf5de3bb4a6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:27:48 +0100 Subject: [PATCH] deps: update gcr.io/distroless/static:nonroot Docker digest to 116ec02 (#1200) Co-authored-by: katexochen --- keyservice/Dockerfile | 2 +- operators/constellation-node-operator/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keyservice/Dockerfile b/keyservice/Dockerfile index c2f4155dc..afedb24aa 100644 --- a/keyservice/Dockerfile +++ b/keyservice/Dockerfile @@ -26,6 +26,6 @@ WORKDIR /constellation/keyservice/cmd ARG PROJECT_VERSION=0.0.0 RUN --mount=type=cache,target=/root/.cache/go-build CGO_ENABLED=0 go build -o /constellation/build/keyservice -trimpath -buildvcs=false -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.VersionInfo=${PROJECT_VERSION}" -FROM gcr.io/distroless/static:nonroot@sha256:6b01107391648040c796967b49b7973188b7c9a6b1d49d06090db349248eba39 as release +FROM gcr.io/distroless/static:nonroot@sha256:116ec02427430e69f5692bf9408d9331ae1ae019749e41f3064ff1bb7482c73e as release COPY --from=build /constellation/build/keyservice /keyservice ENTRYPOINT ["/keyservice"] diff --git a/operators/constellation-node-operator/Dockerfile b/operators/constellation-node-operator/Dockerfile index 6e672fb85..843577653 100644 --- a/operators/constellation-node-operator/Dockerfile +++ b/operators/constellation-node-operator/Dockerfile @@ -25,7 +25,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager main.go # Use distroless as minimal base image to package the manager binary # Refer to https://github.com/GoogleContainerTools/distroless for more details -FROM gcr.io/distroless/static:nonroot@sha256:6b01107391648040c796967b49b7973188b7c9a6b1d49d06090db349248eba39 as release +FROM gcr.io/distroless/static:nonroot@sha256:116ec02427430e69f5692bf9408d9331ae1ae019749e41f3064ff1bb7482c73e as release WORKDIR / COPY --from=builder /workspace/operators/constellation-node-operator/manager . USER 65532:65532