From d01e9324989b3830e642de2d81297d3bda9fe63f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:02:25 +0000 Subject: [PATCH] Bump alpine from 3.20 to 3.21 in /package Bumps alpine from 3.20 to 3.21. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- package/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/Dockerfile b/package/Dockerfile index a5bbe15..33e33c6 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20 as extract +FROM alpine:3.21 as extract RUN apk add -U curl ca-certificates ARG ARCH RUN curl -sL https://get.helm.sh/helm-v3.16.1-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin @@ -22,7 +22,7 @@ RUN mkdir -p /go/src/github.com/helm/helm-mapkubeapis && \ /go/src/github.com/helm/helm-mapkubeapis/config \ /root/.local/share/helm/plugins/helm-mapkubeapis/ -FROM alpine:3.20 +FROM alpine:3.21 ARG BUILDDATE LABEL buildDate=$BUILDDATE RUN apk --no-cache upgrade && \