From 9caac3857d02ac48d594b2afdc5645e721ac8c42 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 7 Sep 2024 01:33:23 +0200 Subject: [PATCH] chore(deps): update alpine docker tag to v3.20.3 (#22) --- 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 513742d..57c4f9e 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.2 +FROM alpine:3.20.3 WORKDIR /app COPY --from=builder /app/hello-world . EXPOSE 8080