From 0da44e0516a55ed7ccf813a181d30506cf4256eb Mon Sep 17 00:00:00 2001 From: Elliot Murphy Date: Mon, 1 Jul 2019 13:07:41 -0400 Subject: [PATCH] Disabling CGO in build Signed-off-by: Elliot Murphy --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 7d47e21a..4607a042 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,7 @@ COPY scripts/entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENV GORELEASER_VERSION v0.111.0 +ENV CGO_ENABLED=0 RUN wget https://github.com/goreleaser/goreleaser/releases/download/$GORELEASER_VERSION/goreleaser_Linux_x86_64.tar.gz \ && tar -C /bin -xzvf goreleaser_Linux_x86_64.tar.gz \