mirror of https://github.com/docker/cli.git
15 lines
251 B
Plaintext
15 lines
251 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Build a static binary for the host OS/ARCH
|
||
|
#
|
||
|
|
||
|
set -eu -o pipefail
|
||
|
|
||
|
source ./scripts/build/.variables
|
||
|
export CC=x86_64-w64-mingw32-gcc
|
||
|
export CGO_ENABLED=1
|
||
|
export GOOS=windows
|
||
|
export GOARCH=amd64
|
||
|
|
||
|
source ./scripts/build/plugins
|