From b0fb43e89308f170a0aed794eff3220e8d29c95e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A1ssio=20Botaro?= Date: Thu, 8 Apr 2021 15:59:50 -0300 Subject: [PATCH] fix: correct flag to optimize build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1f7cb301e..73379b192 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY go.mod . COPY go.sum . RUN go mod download COPY ./ /vim-bootstrap -RUN go install -ldflags "-s -s" ./... +RUN go install -ldflags "-w -s" ./... FROM alpine:3.9 LABEL mantainer="t@avelino.xxx"