From faf41f5a435e40df266e48f4c0a5ed670d20aaa3 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: Thu, 30 Oct 2025 20:09:08 +0000 Subject: [PATCH] chore(deps): update alpine docker tag to v3.22.2 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 a971833070..a45391b513 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.20.3 +FROM alpine:3.22.2 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 135d11db63..7130924172 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.20.3 +FROM alpine:3.22.2 RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub USER hub