From 0c0f725541225fb03718983f380b2f8927f09ed7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Dec 2023 04:06:40 +0000 Subject: [PATCH] Update alpine Docker tag to v3.19 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dc83025..7481c48 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ADD hello-world.go /go/src/app RUN go build hello-world.go # We use a Docker multi-stage build here in order that we only take the compiled go executable -FROM alpine:3.18 +FROM alpine:3.19 LABEL org.opencontainers.image.source="https://github.com/jonashackt/docker-hello-world"