mirror of https://github.com/docker/cli.git
14 lines
276 B
Bash
Executable File
14 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Build a dynamically linked binary for the host OS/ARCH
|
|
#
|
|
|
|
set -eu -o pipefail
|
|
|
|
source ./scripts/build/.variables
|
|
|
|
export CGO_ENABLED=1
|
|
go build -o "${TARGET}" -tags pkcs11 --ldflags "${LDFLAGS}" "${SOURCE}"
|
|
|
|
ln -sf "$(basename ${TARGET})" build/docker
|