From c42108e40addb6716a82191f09718c7a6d4cdfec Mon Sep 17 00:00:00 2001 From: dougbtv Date: Thu, 18 Apr 2019 10:11:26 -0400 Subject: [PATCH] [build] Adds CGO_ENABLED=0 and -tags no_openssl to build script --- build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build b/build index 924ae2752..fa443e157 100755 --- a/build +++ b/build @@ -26,6 +26,7 @@ fi export GO15VENDOREXPERIMENT=1 export GOBIN=${PWD}/bin export GOPATH=${PWD}/gopath +export CGO_ENABLED=0 echo "Building plugins" -go install -ldflags "${LDFLAGS}" "$@" ${REPO_PATH}/multus +go install -tags no_openssl -ldflags "${LDFLAGS}" "$@" ${REPO_PATH}/multus