From 7fa42daa31559089b0420fd99b856326c1be9fd3 Mon Sep 17 00:00:00 2001 From: Lewis Injai Date: Mon, 1 Jun 2026 14:26:35 +0300 Subject: [PATCH] fix: update Dockerfile to Go 1.25 to match go.mod --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 78c670f..5c4ddbe 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -9,7 +9,7 @@ # Uses the official Go image to compile the binary. # This stage is discarded after the binary is copied to the runtime stage. # ----------------------------------------------------------------------------- -FROM golang:1.24-alpine AS builder +FROM golang:1.25-alpine AS builder # Install ca-certificates and git. # ca-certificates: needed for HTTPS connections inside the binary.