[chore](build): update Go version in server Dockerfile

- Upgraded base image to `golang:1.25-alpine` for compatibility with newer features and improvements.
This commit is contained in:
dalbodeule
2025-11-27 19:35:02 +09:00
parent cdab10ea01
commit 0b985b6b65

View File

@@ -12,7 +12,7 @@
# hop-gate-server:dev
# ---------- Build stage ----------
FROM golang:1.22-alpine AS builder
FROM golang:1.25-alpine AS builder
# BuildKit / buildx 가 제공하는 타겟 OS/ARCH 인자를 사용해 멀티 아키텍처 빌드를 지원합니다.
# 기본값을 지정해두면 로컬 docker build 시에도 별도 인자 없이 빌드 가능합니다.