From b268181e6965d2e2893b5a15f12e25cf8f125be8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 09:13:34 +0300 Subject: [PATCH] Update alpine Docker tag to v3.20 (#72) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5a77323..f880901 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ENV GOFLAGS="-mod=vendor" # Statically compile our app for use in the final container RUN CGO_ENABLED=0 go build -ldflags="-w -s" -v -o app . -FROM alpine:3.19 +FROM alpine:3.20 COPY --from=builder /app/app /app