From 70c8edc3f73a4bb10688ac349f14c2b57836839e Mon Sep 17 00:00:00 2001 From: "red-hat-konflux-kflux-prd-rh02[bot]" <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 08:11:35 +0000 Subject: [PATCH] Update alpine Docker tag to v3.23 Signed-off-by: red-hat-konflux-kflux-prd-rh02 <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com> --- upstream/images/api.Dockerfile | 2 +- upstream/images/db.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/upstream/images/api.Dockerfile b/upstream/images/api.Dockerfile index e316751e93..8d0abca752 100644 --- a/upstream/images/api.Dockerfile +++ b/upstream/images/api.Dockerfile @@ -6,7 +6,7 @@ ARG TARGETOS ARG TARGETARCH RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o api-server ./api/cmd/api/... -FROM alpine:3.21 +FROM alpine:3.23 RUN apk --no-cache add git ca-certificates openssh-client && addgroup -S hub && adduser -S hub -G hub USER hub diff --git a/upstream/images/db.Dockerfile b/upstream/images/db.Dockerfile index 17a7048547..204fe468f4 100644 --- a/upstream/images/db.Dockerfile +++ b/upstream/images/db.Dockerfile @@ -7,7 +7,7 @@ ARG TARGETARCH RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o db-migration ./api/cmd/db/... -FROM alpine:3.21 +FROM alpine:3.23 RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub USER hub