diff --git a/images/api.Dockerfile b/images/api.Dockerfile index e27f7939c5..9c381b1e39 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.18.3 +FROM alpine:3.18.4 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 c11077a0e9..bf08cb9527 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.18.3 +FROM alpine:3.18.4 RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub USER hub