From 47b861c8e416ca2d641ce26b366d233e1534621a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 12:36:55 +0000 Subject: [PATCH] Bump golang from 1.23-alpine3.21 to 1.24-alpine3.21 Bumps golang from 1.23-alpine3.21 to 1.24-alpine3.21. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eb4b097b..c8dc2c72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23-alpine3.21 AS builder +FROM golang:1.24-alpine3.21 AS builder RUN apk add --no-cache bash git gcc musl-dev @@ -13,7 +13,7 @@ FROM scratch AS binary COPY --from=builder /src/bin/helm-controller /bin/ # Dev stage for package, testing, and validation -FROM golang:1.23-alpine3.21 AS dev +FROM golang:1.24-alpine3.21 AS dev ARG ARCH ENV ARCH=$ARCH RUN apk add --no-cache bash git gcc musl-dev curl