Skip to content

Commit f809173

Browse files
committed
fix(docker): bump build image to golang:1.26.6
The release image build failed after go.mod moved to 1.26.6: the Dockerfile pinned golang:1.26.5 and the image runs GOTOOLCHAIN=local, so `go mod download` refused the newer directive. CI didn't catch it — it resolves the toolchain from go.mod and downloads it; only the Docker build has a fixed base.
1 parent 26b5adc commit f809173

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN npm run build
1111

1212
# 2) Build the Go binary (embeds the SPA from /web/dist). CGO is off, so we
1313
# cross-compile from the build platform to $TARGETARCH instead of emulating.
14-
FROM --platform=$BUILDPLATFORM golang:1.26.5 AS build
14+
FROM --platform=$BUILDPLATFORM golang:1.26.6 AS build
1515
ARG TARGETARCH
1616
WORKDIR /src
1717
COPY go.mod go.sum ./

0 commit comments

Comments
 (0)