From 2b7eb60c92c93594e224854c1d6a168280b9abc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 27 Apr 2025 19:33:30 +0000 Subject: [PATCH] Bump alpine from 3.19 to 3.21 in /dockerfiles/k8s-tools/fluxcd Bumps alpine from 3.19 to 3.21. --- updated-dependencies: - dependency-name: alpine dependency-version: '3.21' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- dockerfiles/k8s-tools/fluxcd/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/k8s-tools/fluxcd/Dockerfile b/dockerfiles/k8s-tools/fluxcd/Dockerfile index 742ce02d..2abde415 100644 --- a/dockerfiles/k8s-tools/fluxcd/Dockerfile +++ b/dockerfiles/k8s-tools/fluxcd/Dockerfile @@ -1,5 +1,5 @@ # --- Builder Stage: Download FluxCD CLI --- -FROM alpine:3.19 AS builder +FROM alpine:3.21 AS builder # Versions (update these as needed) ARG FLUX_VERSION=2.1.0 @@ -8,7 +8,7 @@ RUN apk add --no-cache curl bash RUN curl -s https://raw.githubusercontent.com/fluxcd/flux2/main/install/flux.sh | FLUX_VERSION=${FLUX_VERSION} bash # --- Final Stage: Runtime Image --- -FROM alpine:3.19 +FROM alpine:3.21 # 1. Create non-root user RUN addgroup -S flux && adduser -S flux -G flux