Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume.charmes@docker.com> (github: creack) Upstream-commit: c89fa6645ef87e1863ef5812bd42176f5bd987ca Component: engine
7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/bash
|
|
|
|
DEST=$1
|
|
|
|
go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS -tags "$BUILDTAGS" ./docker
|
|
echo "Created binary: $DEST/docker-$VERSION"
|