Skip to content

Commit

Permalink
demo: use runc for buildah
Browse files Browse the repository at this point in the history
Signed-off-by: Mikko Ylinen <[email protected]>
  • Loading branch information
mythi committed Jul 22, 2024
1 parent 00a4104 commit edee81a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit edee81a

Please sign in to comment.