Update Dockerfile to use Go 1.25 as the base image

This commit is contained in:
studiokaiji
2025-11-30 12:03:20 +09:00
parent d04be2c476
commit 7872a5e733

View File

@@ -1,7 +1,5 @@
# Build stage
# Go 1.23 is the latest stable version available in Docker Hub
# The project requires Go 1.25 but we'll use 1.23 for now
FROM golang:1.23-alpine AS builder
FROM golang:1.25-alpine AS builder
# Accept GOTOOLCHAIN as build argument
ARG GOTOOLCHAIN=auto