fix: bump Docker Go version from 1.22 to 1.25 to match go.mod

go.mod requires go >= 1.25.0 but both Dockerfiles used golang:1.22-alpine,
causing `go mod download` to fail during container build.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
shankar0123
2026-03-24 12:03:36 -04:00
parent 7bf20fce85
commit 4049dc8c7f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ COPY web/ .
RUN npm run build
# Stage 2: Build Go binary
FROM golang:1.22-alpine AS builder
FROM golang:1.25-alpine AS builder
RUN apk add --no-cache git ca-certificates tzdata