mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 17:18:11 +00:00
-ne comparison errors "[: : integer expression expected" on empty value. Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
25 lines
574 B
Bash
Executable File
25 lines
574 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
function clean() {
|
|
docker rmi $(cat $iidfile)
|
|
}
|
|
|
|
iidfile=$(mktemp -t docker-iidfile.XXXXXXXXXX)
|
|
DOCKER_BUILDKIT=1 docker build --iidfile $iidfile --build-arg BUILDKIT_DEBUG --target dev-env .
|
|
|
|
trap clean EXIT
|
|
SSH=
|
|
if [ -n "$MOUNT_SSH_AUTH_SOCK" ]; then
|
|
SSH="-v $SSH_AUTH_SOCK:$SSH_AUTH_SOCK -e SSH_AUTH_SOCK"
|
|
fi
|
|
|
|
volumes=
|
|
if [ -n "$MOUNT_BUILDKIT_SOURCE" ]; then
|
|
volumes="-v $(pwd):/src"
|
|
fi
|
|
|
|
set -x
|
|
docker run $SSH $volumes -it --privileged -v /tmp --net=host -e BUILDKIT_REGISTRY_MIRROR_DIR=/root/.cache/registry --rm $(cat $iidfile) ash
|