From d107c9a1493fa6b99701d633f0a1d5dc13367ce7 Mon Sep 17 00:00:00 2001 From: wonder Date: Fri, 26 Jun 2026 15:24:18 +0800 Subject: [PATCH] fix: use golang:1.24-alpine Docker image to match go.mod requirements filippo.io/edwards25519 v1.2.0 requires go 1.24+. Co-Authored-By: Claude --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 73d0f18..a4e57a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22-alpine AS builder +FROM golang:1.24-alpine AS builder WORKDIR /app COPY go.mod go.sum ./