From 9d43cd9497df5a46215f4d66a643297ec080434d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Jun 2023 03:59:44 +0000 Subject: [PATCH] Bump alpine from 3.17.2 to 3.18.2 in /images Bumps alpine from 3.17.2 to 3.18.2. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- images/api.Dockerfile | 2 +- images/db.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/api.Dockerfile b/images/api.Dockerfile index 35b84a3ce..5ae676ef6 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 6cdfe2e87..bd9592256 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