From 7872a5e733808f79d5cc7b3840ea543410efc688 Mon Sep 17 00:00:00 2001 From: studiokaiji Date: Sun, 30 Nov 2025 12:03:20 +0900 Subject: [PATCH] Update Dockerfile to use Go 1.25 as the base image --- hostr/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hostr/Dockerfile b/hostr/Dockerfile index cc51788..36965fa 100644 --- a/hostr/Dockerfile +++ b/hostr/Dockerfile @@ -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