From 4fc19ccb0bef88dc8d2e69c41d70b3d282d32b98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 10:38:26 +0000 Subject: [PATCH] Bump alpine from 3.18.4 to 3.19.1 in /cmd/ah Bumps alpine from 3.18.4 to 3.19.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- cmd/ah/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ah/Dockerfile b/cmd/ah/Dockerfile index 699c505174..463c78871f 100644 --- a/cmd/ah/Dockerfile +++ b/cmd/ah/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /go/src/github.com/artifacthub/ah/cmd/ah RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-X main.version=$VERSION -X main.gitCommit=$GIT_COMMIT" -o /ah . # Final stage -FROM alpine:3.18.4 +FROM alpine:3.19.1 RUN apk --no-cache add git && addgroup -S ah -g 1000 && adduser -S ah -u 1000 -G ah USER 1000 COPY --from=ah-builder /ah /usr/local/bin