diff --git a/internal/witness/cmd/witness/Dockerfile b/internal/witness/cmd/witness/Dockerfile index 3387239e26..8d12bdccd5 100644 --- a/internal/witness/cmd/witness/Dockerfile +++ b/internal/witness/cmd/witness/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.4-bookworm@sha256:52362e252f452df17c24131b021bf2ebf1c9869f65c28f88ddb326191defea9c AS builder +FROM golang:1.21.5-bookworm@sha256:a6b787c7f9046e3fdaa97bca1f76fd23ff4108f612de885e1af87e0dccc02f99 AS builder ARG GOFLAGS="" ENV GOFLAGS=$GOFLAGS @@ -18,7 +18,7 @@ COPY . . RUN go build -o /build/bin/witness ./internal/witness/cmd/witness # Build release image -FROM golang:1.21.4-bookworm@sha256:52362e252f452df17c24131b021bf2ebf1c9869f65c28f88ddb326191defea9c +FROM golang:1.21.5-bookworm@sha256:a6b787c7f9046e3fdaa97bca1f76fd23ff4108f612de885e1af87e0dccc02f99 COPY --from=builder /build/bin/witness /bin/witness ENTRYPOINT ["/bin/witness"]