From 88ebbd1ce77df525bf20b90763002fd1be18cef5 Mon Sep 17 00:00:00 2001 From: dalbodeule <11470513+dalbodeule@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:51:04 +0900 Subject: [PATCH] [chore](build): remove redundant GOARCH flag from server Dockerfile - Simplified the build stage by eliminating the unused `GOARCH` flag, ensuring compatibility with the default architecture. --- Dockerfile.server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.server b/Dockerfile.server index 503e0f4..69a5db7 100644 --- a/Dockerfile.server +++ b/Dockerfile.server @@ -30,7 +30,7 @@ RUN go mod download || true COPY . . # 서버 바이너리 빌드 -RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /out/hop-gate-server ./cmd/server +RUN CGO_ENABLED=0 GOOS=linux go build -o /out/hop-gate-server ./cmd/server # ---------- Runtime stage ---------- FROM alpine:3.20