Merge pull request #10556 from thaJeztah/fix_runc_version

script/setup/install-runc: fix runc using incorrect version
This commit is contained in:
Maksym Pavlenko
2024-08-06 20:35:45 +00:00
committed by GitHub

View File

@@ -37,7 +37,7 @@ function install_runc() {
git clone "${RUNC_REPO}" "${TMPROOT}"/runc
pushd "${TMPROOT}"/runc
git checkout "${RUNC_VERSION}"
make BUILDTAGS='seccomp' runc
env -u VERSION make BUILDTAGS='seccomp' runc
$SUDO make install
popd
rm -fR "${TMPROOT}"