diff --git a/images/api.Dockerfile b/images/api.Dockerfile index 35b84a3ce8..5ae676ef66 100644 --- a/images/api.Dockerfile +++ b/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.17.2 +FROM alpine:3.18.2 RUN apk --no-cache add git ca-certificates openssh-client && addgroup -S hub && adduser -S hub -G hub USER hub diff --git a/images/db.Dockerfile b/images/db.Dockerfile index 6cdfe2e87b..bd9592256a 100644 --- a/images/db.Dockerfile +++ b/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.17.2 +FROM alpine:3.18.2 RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub USER hub