From edee81a73df6d88b4e93122555e9b83665ab4a63 Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Mon, 22 Jul 2024 18:17:33 +0300 Subject: [PATCH] demo: use runc for buildah Signed-off-by: Mikko Ylinen --- demo/build-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/build-image.sh b/demo/build-image.sh index 8619ff343..e34572d39 100755 --- a/demo/build-image.sh +++ b/demo/build-image.sh @@ -20,7 +20,7 @@ TAG=${TAG:-devel} if [ -z "$BUILDER" -o "$BUILDER" = 'docker' -o "$BUILDER" = 'podman' ] ; then ${BUILDER} build --pull -t ${IMG}:${TAG} "$CWD/$DIR/" elif [ "$BUILDER" = 'buildah' ] ; then - buildah bud --pull-always --log-level trace -t ${IMG}:${TAG} "$CWD/$DIR/" + BUILDAH_RUNTIME=runc buildah bud --pull-always --log-level trace -t ${IMG}:${TAG} "$CWD/$DIR/" else (>&2 echo "Unknown builder $BUILDER") exit 1