From 87621643886d2ee79c0841a0f97ff5b0b8e40a50 Mon Sep 17 00:00:00 2001 From: timerzz Date: Tue, 14 May 2024 22:00:23 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=87=8D=E6=96=B0go=20mod=20tidy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 20d3f05..3f26f8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ARG GOPROXY=https://goproxy.cn,direct ARG GOPRIVATE=gitea.timerzz.com ARG GONOSUMDB=gitea.timerzz.com ARG GONOPROXY=gitea.timerzz.com -RUN go build -o run -trimpath -ldflags '-w -s' ./cmd +RUN go build -trimpath -ldflags '-w -s' -o run ./cmd FROM alpine:latest WORKDIR /work