diff --git a/upstream/images/api.Dockerfile b/upstream/images/api.Dockerfile index 86794f0c23..53fb4d174b 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.22 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 0623122ddd..e8689c2250 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.22 RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub USER hub