From 2aa16ccfdc98f91510465037b6dde67de4325be8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 12:40:51 +0000 Subject: [PATCH 1/2] chore(deps): bump alpine from 3.20.2 to 3.20.3 Bumps alpine from 3.20.2 to 3.20.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 67ea8c1c..f8f6dcab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN go build -o /usr/local/bin/chaoskube -v \ RUN /usr/local/bin/chaoskube --version # final image -FROM alpine:3.20.2 +FROM alpine:3.20.3 RUN apk --no-cache add ca-certificates dumb-init tzdata COPY --from=builder /usr/local/bin/chaoskube /usr/local/bin/chaoskube From 8296ad5154bf233b798809ceba7a0fefb3c723f3 Mon Sep 17 00:00:00 2001 From: Martin Linkhorst Date: Mon, 21 Oct 2024 14:49:46 +0200 Subject: [PATCH 2/2] align alpine version within Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f8f6dcab..4b68eb80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # builder image -FROM golang:1.22.5-alpine3.19 AS builder +FROM golang:1.22.5-alpine3.20 AS builder ENV CGO_ENABLED=0 RUN apk --no-cache add alpine-sdk