From c46af3877284f033529856b118178b45d19e39cc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Jan 2025 01:15:31 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.21 --- cmd/ssl-team-client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ssl-team-client/Dockerfile b/cmd/ssl-team-client/Dockerfile index a4835ea0..4abd2b56 100644 --- a/cmd/ssl-team-client/Dockerfile +++ b/cmd/ssl-team-client/Dockerfile @@ -8,7 +8,7 @@ COPY go.sum . RUN go install -v ./cmd/ssl-team-client # Start fresh from a smaller image -FROM alpine:3.19 +FROM alpine:3.21 COPY --from=build_go /go/bin/ssl-team-client /app/ssl-team-client USER 1000 ENTRYPOINT ["/app/ssl-team-client"]