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 7fdb825 commit 9c0c6efCopy full SHA for 9c0c6ef
demo/build-image.sh
@@ -18,7 +18,7 @@ CWD=`dirname $0`
18
TAG=${TAG:-devel}
19
20
if [ -z "$BUILDER" -o "$BUILDER" = 'docker' -o "$BUILDER" = 'podman' ] ; then
21
- ${BUILDER} build --pull -t ${IMG}:${TAG} "$CWD/$DIR/"
+ DOCKER_BUILDKIT=1 ${BUILDER} build --pull -t ${IMG}:${TAG} "$CWD/$DIR/"
22
elif [ "$BUILDER" = 'buildah' ] ; then
23
buildah bud --pull-always -t ${IMG}:${TAG} "$CWD/$DIR/"
24
else
0 commit comments