From 2798c33c54bd5a07d3cb04ce669f371420a11c58 Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 5 Dec 2024 16:11:00 +0200 Subject: [PATCH] refactor: remove ldflags from go --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2800c76..116e2ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY cmd/ cmd/ RUN go mod tidy -RUN go build -ldflags "-s -w" -o tipimate main.go +RUN go build -o tipimate main.go # --- RUNNER ---- FROM alpine:3.20 AS runner