From 765be562cdde18385751e8a6012d80e9f1e8ead7 Mon Sep 17 00:00:00 2001 From: Denis Halturin Date: Fri, 3 Nov 2023 16:45:59 +0400 Subject: [PATCH] removed redundant make param Signed-off-by: Denis Halturin --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5aae26b..933deea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN go mod download COPY main.go Makefile /src/ COPY pkg /src/pkg -RUN make build CGO_ENABLED=0 GOOS=linux GOARCH=amd64 +RUN make build CGO_ENABLED=0 GOOS=linux FROM alpine:3.17