From da75613b4947ff898650774ec2208014974a3999 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 27 Jan 2024 02:32:19 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.19.1 --- 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 6d7e37f..41f8cdd 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.0 +FROM alpine:3.19.1 WORKDIR /app COPY --from=builder /app/hello-world . EXPOSE 8080