mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
70cdb1c664
Go 1.11 includes a fix to os/user to be working in a static binary (fixing https://github.com/golang/go/issues/23265). The fix requires `osusergo` build tag to be set for static binaries, which is what this commit adds (also for containerd). [v2: sort build tags alphabetically] Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
36 lines
1,013 B
Bash
Executable file
36 lines
1,013 B
Bash
Executable file
#!/bin/sh
|
|
|
|
|
|
# containerd is also pinned in vendor.conf. When updating the binary
|
|
# version you may also need to update the vendor version to pick up bug
|
|
# fixes or new APIs.
|
|
CONTAINERD_COMMIT=468a545b9edcd5932818eb9de8e72413e616e86e # v1.1.2
|
|
|
|
install_containerd() {
|
|
echo "Install containerd version $CONTAINERD_COMMIT"
|
|
git clone https://github.com/containerd/containerd.git "$GOPATH/src/github.com/containerd/containerd"
|
|
cd "$GOPATH/src/github.com/containerd/containerd"
|
|
git checkout -q "$CONTAINERD_COMMIT"
|
|
|
|
(
|
|
|
|
export BUILDTAGS='netgo osusergo static_build'
|
|
export EXTRA_FLAGS='-buildmode=pie'
|
|
export EXTRA_LDFLAGS='-extldflags "-fno-PIC -static"'
|
|
|
|
# Reset build flags to nothing if we want a dynbinary
|
|
if [ "$1" == "dynamic" ]; then
|
|
export BUILDTAGS=''
|
|
export EXTRA_FLAGS=''
|
|
export EXTRA_LDFLAGS=''
|
|
fi
|
|
|
|
make
|
|
)
|
|
|
|
mkdir -p ${PREFIX}
|
|
|
|
cp bin/containerd ${PREFIX}/docker-containerd
|
|
cp bin/containerd-shim ${PREFIX}/docker-containerd-shim
|
|
cp bin/ctr ${PREFIX}/docker-containerd-ctr
|
|
}
|