From 5a95fbee0e27d5906fe6d4e77d51ac7310cc37a4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 14:58:02 +0200 Subject: [PATCH] Update gcr.io/distroless/static Docker digest to f6ba6e4 (#243) Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> --- joinservice/Dockerfile | 2 +- kms/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/joinservice/Dockerfile b/joinservice/Dockerfile index 37f72da79..a98fe2438 100644 --- a/joinservice/Dockerfile +++ b/joinservice/Dockerfile @@ -26,6 +26,6 @@ ARG PROJECT_VERSION=0.0.0 RUN CGO_ENABLED=0 go build -o join-service -trimpath -buildvcs=false -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.VersionInfo=${PROJECT_VERSION}" ./cmd/ # Use gcr.io/distroless/static here since we need CA certificates to be installed for aTLS operations on GCP. -FROM gcr.io/distroless/static@sha256:d673e44035b1435c88f63c4b7066501e21fe5c6b111cd9ada7d9301f780b2416 as release +FROM gcr.io/distroless/static@sha256:f6ba6e4b2b5881fb94a99113de3c886c5f72e589946ece055dee2aade9486b8f as release COPY --from=build /constellation/joinservice/join-service /joinservice ENTRYPOINT [ "/joinservice" ] diff --git a/kms/Dockerfile b/kms/Dockerfile index 2128c7e90..3c97dc508 100644 --- a/kms/Dockerfile +++ b/kms/Dockerfile @@ -27,6 +27,6 @@ ARG PROJECT_VERSION=0.0.0 RUN CGO_ENABLED=0 go build -o /constellation/build/kmsserver -trimpath -buildvcs=false -ldflags "-s -w -buildid='' -X github.com/edgelesssys/constellation/v2/internal/constants.VersionInfo=${PROJECT_VERSION}" # Use gcr.io/distroless/static here since we need CA certificates to be installed for aTLS operations on GCP. -FROM gcr.io/distroless/static@sha256:d673e44035b1435c88f63c4b7066501e21fe5c6b111cd9ada7d9301f780b2416 as release +FROM gcr.io/distroless/static@sha256:f6ba6e4b2b5881fb94a99113de3c886c5f72e589946ece055dee2aade9486b8f as release COPY --from=build /constellation/build/kmsserver /kmsserver ENTRYPOINT ["/kmsserver"]