From cdab10ea0101a4c7f662958499c3a6393ac05e4a Mon Sep 17 00:00:00 2001 From: dalbodeule <11470513+dalbodeule@users.noreply.github.com> Date: Thu, 27 Nov 2025 18:56:08 +0900 Subject: [PATCH] [chore](build): remove unused GOPROXY configuration from server Dockerfile - Eliminated redundant `GOPROXY` environment configuration step to streamline the Docker build process. --- Dockerfile.server | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile.server b/Dockerfile.server index 57842e7..5353650 100644 --- a/Dockerfile.server +++ b/Dockerfile.server @@ -25,8 +25,6 @@ WORKDIR /src COPY go.mod ./ COPY go.sum ./ -RUN go env -w GOPROXY=https://proxy.golang.org,direct - # 의존성 다운로드 (캐시 활용을 위해 소스 전체 복사 전에 실행) RUN go mod download