Skip to content

Commit edee81a

Browse files
committed
demo: use runc for buildah
Signed-off-by: Mikko Ylinen <[email protected]>
1 parent 00a4104 commit edee81a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo/build-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ TAG=${TAG:-devel}
2020
if [ -z "$BUILDER" -o "$BUILDER" = 'docker' -o "$BUILDER" = 'podman' ] ; then
2121
${BUILDER} build --pull -t ${IMG}:${TAG} "$CWD/$DIR/"
2222
elif [ "$BUILDER" = 'buildah' ] ; then
23-
buildah bud --pull-always --log-level trace -t ${IMG}:${TAG} "$CWD/$DIR/"
23+
BUILDAH_RUNTIME=runc buildah bud --pull-always --log-level trace -t ${IMG}:${TAG} "$CWD/$DIR/"
2424
else
2525
(>&2 echo "Unknown builder $BUILDER")
2626
exit 1

0 commit comments

Comments
 (0)