From e1494a9854e546904b6da39580a4c067d9d88124 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 23 Sep 2026 20:32:42 +0000 Subject: [PATCH] fix(examples): build the docker fleets on Go 1.26 The dependency bump raised go.mod to go 1.26.0, but the fleet and gateway integration images still built on golang:1.25-alpine with GOTOOLCHAIN=local, so `go mod download` refused to run and both integration jobs failed. Co-Authored-By: Claude Opus 5.5 Claude-Session: https://claude.ai/code/session_01Y5rfBgKpH7D2y2eRRVLsCq --- examples/fleet-docker/Dockerfile | 2 +- examples/gateway-docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/fleet-docker/Dockerfile b/examples/fleet-docker/Dockerfile index 1f8ab852..feaff543 100644 --- a/examples/fleet-docker/Dockerfile +++ b/examples/fleet-docker/Dockerfile @@ -6,7 +6,7 @@ # Build spinloop from the working tree, so the stack tests THIS commit rather # than a published artifact. -FROM golang:1.25-alpine AS build +FROM golang:1.26-alpine AS build WORKDIR /src COPY go.mod go.sum ./ RUN go mod download diff --git a/examples/gateway-docker/Dockerfile b/examples/gateway-docker/Dockerfile index 2ccaf869..468af6fa 100644 --- a/examples/gateway-docker/Dockerfile +++ b/examples/gateway-docker/Dockerfile @@ -7,7 +7,7 @@ # Build spinloop from the working tree, so the stack tests THIS commit rather # than a published artifact. -FROM golang:1.25-alpine AS build +FROM golang:1.26-alpine AS build WORKDIR /src COPY go.mod go.sum ./ RUN go mod download