mirror of
https://gitea.com/docker/setup-buildx-action.git
synced 2024-11-22 17:39:33 +01:00
7 lines
200 B
Text
7 lines
200 B
Text
|
#!/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)
|