From 645bb1e2a2d3a1b86714942a70647c207600218e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 May 2023 10:03:36 +0000 Subject: [PATCH] Bump alpine from 3.17 to 3.18 in /package Bumps alpine from 3.17 to 3.18. --- 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 c7245d2..5e6c942 100644 --- a/package/Dockerfile +++ b/package/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.17 as extract +FROM alpine:3.18 as extract RUN apk add -U curl ca-certificates ARG ARCH RUN curl https://get.helm.sh/helm-v2.17.0-linux-${ARCH}.tar.gz | tar xvzf - --strip-components=1 -C /usr/bin @@ -23,7 +23,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.17 +FROM alpine:3.18 ARG BUILDDATE LABEL buildDate=$BUILDDATE RUN apk --no-cache upgrade && \