From f94362f2abca58c7454c6b251dc73700478a07ed Mon Sep 17 00:00:00 2001 From: dreacot Date: Tue, 19 Dec 2023 19:23:04 -0700 Subject: [PATCH] attempt darwin build iwth linux --- reproduciblebuilds/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reproduciblebuilds/Dockerfile b/reproduciblebuilds/Dockerfile index 4adf82ebe..4252b2b7c 100644 --- a/reproduciblebuilds/Dockerfile +++ b/reproduciblebuilds/Dockerfile @@ -8,6 +8,9 @@ ARG BUILDNAME RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.35.2 ENV GO111MODULE on +ENV CGO_ENABLED=0 +ENV GOOS=$BUILDOS +ENV GOARCH=$BUILDARCH RUN go version