From c041970e99dc3104a1f29e1c9733fe73df8a904c Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Fri, 3 Jul 2020 12:59:04 +0900 Subject: [PATCH] update crun to v0.14 Signed-off-by: Akihiro Suda --- script/setup/install-runc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/setup/install-runc b/script/setup/install-runc index edbfc919b..c8468ad74 100755 --- a/script/setup/install-runc +++ b/script/setup/install-runc @@ -31,7 +31,7 @@ function install_runc() { } function install_crun() { - CRUN_VERSION=0.13 + CRUN_VERSION=0.14 curl -o /usr/local/sbin/runc -L https://github.com/containers/crun/releases/download/${CRUN_VERSION}/crun-${CRUN_VERSION}-static-$(uname -m) chmod +x /usr/local/sbin/runc }