2018-02-16 13:51:30 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# When updating RUNC_COMMIT, also update runc in vendor.conf accordingly
|
2018-11-01 16:07:06 -07:00
|
|
|
RUNC_COMMIT=9f1e94488e5e478e084fef997f022565b64b01d9
|
2018-02-16 13:51:30 -05:00
|
|
|
|
|
|
|
install_runc() {
|
2018-11-06 11:15:36 -08:00
|
|
|
# If using RHEL7 kernels (3.10.0 el7), disable kmem accounting/limiting
|
|
|
|
if uname -r | grep -q '^3\.10\.0.*\.el7\.'; then
|
|
|
|
: ${RUNC_NOKMEM='nokmem'}
|
|
|
|
fi
|
|
|
|
|
2018-02-16 13:51:30 -05:00
|
|
|
# Do not build with ambient capabilities support
|
2018-11-06 11:15:36 -08:00
|
|
|
RUNC_BUILDTAGS="${RUNC_BUILDTAGS:-"seccomp apparmor selinux $RUNC_NOKMEM"}"
|
2018-02-16 13:51:30 -05:00
|
|
|
|
2018-11-06 11:15:36 -08:00
|
|
|
echo "Install runc version $RUNC_COMMIT (build tags: $RUNC_BUILDTAGS)"
|
2018-02-16 13:51:30 -05:00
|
|
|
git clone https://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc"
|
|
|
|
cd "$GOPATH/src/github.com/opencontainers/runc"
|
|
|
|
git checkout -q "$RUNC_COMMIT"
|
2018-03-07 21:29:10 +00:00
|
|
|
if [ -z "$1" ]; then
|
|
|
|
target=static
|
|
|
|
else
|
|
|
|
target="$1"
|
|
|
|
fi
|
|
|
|
make BUILDTAGS="$RUNC_BUILDTAGS" "$target"
|
2018-02-16 13:51:30 -05:00
|
|
|
mkdir -p ${PREFIX}
|
2018-09-21 22:58:34 +00:00
|
|
|
cp runc ${PREFIX}/runc
|
2018-02-16 13:51:30 -05:00
|
|
|
}
|