From 735ed3f1578145b6c3c6c904cb9de48c67246b04 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 7 Apr 2024 01:59:59 +0000 Subject: [PATCH] build(deps): update docker tags (#65) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 67e4ed8..d8bbf9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the application from source. -FROM golang:1.22.1-alpine@sha256:6f179eca0d49ec57ed6d64067d3d2c8c77fb4ca134b687f31cf1666e467cd1a9 AS go-builder +FROM golang:1.22.2-alpine@sha256:cdc86d9f363e8786845bea2040312b4efa321b828acdeb26f393faa864d887b0 AS go-builder ENV GOCACHE="/cache/go-build" \ # Disable CGO to build a static binary. @@ -12,7 +12,7 @@ RUN --mount=type=cache,target=${GOCACHE} \ go build -o /app/dist/deadnews-template-go ./... # Deploy the application binary into a lean image. -FROM gcr.io/distroless/static-debian12:latest@sha256:6dcc833df2a475be1a3d7fc951de90ac91a2cb0be237c7578b88722e48f2e56f AS runtime +FROM gcr.io/distroless/static-debian12:latest@sha256:41972110a1c1a5c0b6adb283e8aa092c43c31f7c5d79b8656fbffff2c3e61f05 AS runtime LABEL maintainer "DeadNews " ENV GO_PORT=1271