mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
32 lines
873 B
Text
32 lines
873 B
Text
|
#!/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=cfd04396dc68220d1cecbe686a6cc3aa5ce3667c # v1.0.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"
|
||
|
|
||
|
(
|
||
|
|
||
|
if [ "$1" == "static" ]; then
|
||
|
export BUILDTAGS='static_build netgo'
|
||
|
export EXTRA_FLAGS='-buildmod pie'
|
||
|
export EXTRA_LDFLAGS='-extldflags "-fno-PIC -static"'
|
||
|
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
|
||
|
}
|