We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00a4104 commit edee81aCopy full SHA for edee81a
demo/build-image.sh
@@ -20,7 +20,7 @@ TAG=${TAG:-devel}
20
if [ -z "$BUILDER" -o "$BUILDER" = 'docker' -o "$BUILDER" = 'podman' ] ; then
21
${BUILDER} build --pull -t ${IMG}:${TAG} "$CWD/$DIR/"
22
elif [ "$BUILDER" = 'buildah' ] ; then
23
- 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/"
24
else
25
(>&2 echo "Unknown builder $BUILDER")
26
exit 1
0 commit comments