mirror of https://github.com/portainer/portainer
16 lines
396 B
Bash
Executable File
16 lines
396 B
Bash
Executable File
export GOPATH="/tmp/go"
|
|
|
|
binary="portainer"
|
|
|
|
mkdir -p dist
|
|
mkdir -p ${GOPATH}/src/github.com/portainer/portainer
|
|
|
|
cp -R api ${GOPATH}/src/github.com/portainer/portainer/api
|
|
|
|
cd 'api/cmd/portainer'
|
|
|
|
go get -t -d -v ./...
|
|
GOOS=$1 GOARCH=$2 CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags '-s'
|
|
|
|
mv "$BUILD_SOURCESDIRECTORY/api/cmd/portainer/$binary" "$BUILD_SOURCESDIRECTORY/dist/portainer"
|