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