1
0
Fork 0
mirror of https://github.com/docker/setup-buildx-action.git synced 2025-04-02 22:40:07 +02:00
setup-buildx-action/hack/shell

7 lines
200 B
Text
Raw Normal View History

#!/usr/bin/env bash
iidfile=$(mktemp -t docker-iidfile.XXXXXXXXXX)
DOCKER_BUILDKIT=1 docker build --iidfile $iidfile --progress=plain .
docker run -it --rm $(cat $iidfile)
docker rmi $(cat $iidfile)