From cd47392f53fcba8f5229f62d62ad5c2a4d89f0ad Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 07:36:56 +0200 Subject: [PATCH] chore(deps): update alpine docker tag to v3.20.0 (#16) --- hello-world-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello-world-app/Dockerfile b/hello-world-app/Dockerfile index 41f8cdd..9f5e2ae 100644 --- a/hello-world-app/Dockerfile +++ b/hello-world-app/Dockerfile @@ -2,7 +2,7 @@ FROM golang:latest AS builder COPY ./hello-world.go . RUN go env -w CGO_ENABLED=0 GO111MODULE=off && go build -o /app/hello-world -FROM alpine:3.19.1 +FROM alpine:3.20.0 WORKDIR /app COPY --from=builder /app/hello-world . EXPOSE 8080