From c6d9bf07e62ac91e8dfec0826863c02dbb4f03a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Jan 2023 17:21:57 +0100 Subject: [PATCH] build(deps): bump alpine from 3.17.0 to 3.17.1 (#714) Bumps alpine from 3.17.0 to 3.17.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d73a840..aa1b14e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$TARGETPLATFORM alpine:3.17.0 as bin +FROM --platform=$TARGETPLATFORM alpine:3.17.1 as bin ARG TARGETOS ARG TARGETARCH @@ -19,7 +19,7 @@ RUN set -ex \ esac \ && cp /dist/kured_${TARGETOS}_${TARGETARCH}${SUFFIX}/kured /dist/kured; -FROM --platform=$TARGETPLATFORM alpine:3.17.0 +FROM --platform=$TARGETPLATFORM alpine:3.17.1 RUN apk update --no-cache && apk upgrade --no-cache && apk add --no-cache ca-certificates tzdata COPY --from=bin /dist/kured /usr/bin/kured ENTRYPOINT ["/usr/bin/kured"]