2021-10-28 11:18:13 +00:00
|
|
|
set -x
|
2019-01-30 22:37:16 +00:00
|
|
|
|
2021-10-28 11:18:13 +00:00
|
|
|
mkdir -p dist
|
2019-01-30 22:37:16 +00:00
|
|
|
|
2021-10-28 11:18:13 +00:00
|
|
|
cd api
|
|
|
|
# the go get adds 8 seconds
|
2019-01-30 22:37:16 +00:00
|
|
|
go get -t -d -v ./...
|
|
|
|
|
2021-10-28 11:18:13 +00:00
|
|
|
# the build takes 2 seconds
|
|
|
|
GOOS=$1 GOARCH=$2 CGO_ENABLED=0 go build \
|
|
|
|
--installsuffix cgo \
|
|
|
|
--ldflags '-s' \
|
|
|
|
-o "../dist/portainer" \
|
|
|
|
./cmd/portainer/
|