From 3e4b97e2625c0bd8458345c2d22d0cbd49aa6b62 Mon Sep 17 00:00:00 2001 From: Vladimir Zagainov Date: Mon, 1 Jun 2026 17:20:51 +0300 Subject: [PATCH] fix: update builder image to golang:1.25-alpine go.mod requires Go 1.25+, but Dockerfile was still using golang:1.22-alpine as the builder image. This caused CI build failure: "go.mod requires go >= 1.25.0 (running go 1.22.12)" --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 42abcf0..7f3115a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Multi-stage build for MrixsCraft backend. # Final image: ~20 MB, non-root, no toolchain. -FROM golang:1.22-alpine AS builder +FROM golang:1.25-alpine AS builder WORKDIR /build COPY go.mod go.sum ./ RUN go mod download