From ecdb52b7438550a9c673f2eff5b1dd8a8b54b2b9 Mon Sep 17 00:00:00 2001 From: Evan Reichard Date: Thu, 9 Jul 2026 10:23:33 -0400 Subject: [PATCH] fix: bump BuildKit base image to golang:1.25 to match go.mod --- Dockerfile-BuildKit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-BuildKit b/Dockerfile-BuildKit index 67914bb..9088dae 100644 --- a/Dockerfile-BuildKit +++ b/Dockerfile-BuildKit @@ -3,7 +3,7 @@ FROM alpine AS alpine RUN apk update && apk add --no-cache ca-certificates tzdata # Build Image -FROM --platform=$BUILDPLATFORM golang:1.24 AS build +FROM --platform=$BUILDPLATFORM golang:1.25 AS build # Create Package Directory WORKDIR /src