From d85a58aa704bc068b0f6d3f447474633c8b56083 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 4 Dec 2021 03:31:34 +0100 Subject: [PATCH] Remove unused buildtag from Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec5dc18..891fe01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ COPY go.mod /app/go.mod COPY go.sum /app/go.sum RUN go mod download COPY . /app -RUN CGO_ENABLED=0 go build -tags allcerts -o ezshare cmd/ezshare.go +RUN CGO_ENABLED=0 go build -o ezshare cmd/ezshare.go FROM builder-base as certs VOLUME ["/data"]