diff --git a/upstream/images/api.Dockerfile b/upstream/images/api.Dockerfile index 1b1653cc57..129d283ee3 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.2 +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 10f00d6f17..b878c89f61 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.2 +FROM alpine:3.22.2 RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub USER hub