Remove referenced to developing on the host, we shouldn't support it. Move script/validate to scripts/validate to be consistent. Set the default target to be binary instead of clean. Signed-off-by: Daniel Nephin <dnephin@docker.com>
15 lines
293 B
Bash
Executable File
15 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Build a static binary for the host OS/ARCH
|
|
#
|
|
|
|
set -eu -o pipefail
|
|
|
|
source ./scripts/build/.variables
|
|
|
|
echo "Building statically linked $TARGET"
|
|
export CGO_ENABLED=0
|
|
go build -o "${TARGET}" --ldflags "${LDFLAGS}" "${SOURCE}"
|
|
|
|
ln -sf "$(basename ${TARGET})" build/docker
|