After a nice long brainstorming session with @shykes on IRC, we decided on using a SHA1 hash of dockerinit compiled into the dynamic docker binary to ensure that we always use the two in a perfect pair, and never mix and match. Upstream-commit: 21161dbd515fb97cf9052a5980de6fc6180a89dc Component: engine
7 lines
156 B
Bash
7 lines
156 B
Bash
#!/bin/sh
|
|
|
|
DEST=$1
|
|
|
|
go build -o $DEST/docker-$VERSION -ldflags "$LDFLAGS $LDFLAGS_STATIC" $BUILDFLAGS ./docker
|
|
echo "Created binary: $DEST/docker-$VERSION"
|