From 37cd3a0796934b21664e980378e760bcc3d39f92 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 06:14:34 +0100 Subject: [PATCH] chore(deps): update alpine docker tag to v3.21.0 (#27) --- 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 57c4f9e..7d0fd5f 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.20.3 +FROM alpine:3.21.0 WORKDIR /app COPY --from=builder /app/hello-world . EXPOSE 8080