mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b529d1b093
Originally I worked on this for the multi-stage build Dockerfile changes. Decided to split this out as we are still waiting for multi-stage to be available on CI and rebasing these is pretty annoying. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
31 lines
873 B
Bash
Executable file
31 lines
873 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=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
|
|
}
|