From a3b3fe83c4234812bb619eccb7c50a54859285d4 Mon Sep 17 00:00:00 2001 From: Gary Clayburg Date: Thu, 12 Aug 2021 20:37:26 +0000 Subject: [PATCH] workaround runc regression on gitpod https://github.com/gitpod-io/gitpod/issues/5124 --- fixrunc.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 fixrunc.sh diff --git a/fixrunc.sh b/fixrunc.sh new file mode 100755 index 0000000..44e542a --- /dev/null +++ b/fixrunc.sh @@ -0,0 +1,5 @@ +#!/bin/sh +curl -o olderrunc -L https://github.com/opencontainers/runc/releases/download/v1.0.0-rc93/runc.amd64 +chmod 755 olderrunc +sudo cp -p /usr/bin/runc runc.1.0.1.orig +sudo cp olderrunc /usr/bin/runc