From 6cd87ad31fcfd4032bedbd2069354607e9f5a654 Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar <30073382+mighty840@users.noreply.github.com> Date: Mon, 31 Aug 2026 18:58:04 +0200 Subject: [PATCH] fix(build): builder image Go 1.25, go.mod requires >= 1.25.0 The image job now actually builds (docker:27-cli fix) and surfaced this: golang:1.24-alpine ships go 1.24.13 with GOTOOLCHAIN=local, so 'go mod download' refuses the go 1.25.0 module (run 5490). Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01CNdLL9BdsWm7MCyui5ffPD --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d83fa9f..f678abf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # /tenant-registry — long-running API server # /migrate — one-shot schema migrator (Orca init container in prod) -FROM golang:1.24-alpine AS build +FROM golang:1.25-alpine AS build WORKDIR /src COPY go.mod go.sum ./ RUN go mod download