mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 17:18:11 +00:00
7 lines
259 B
Bash
Executable File
7 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail -x
|
|
|
|
# update this to iidfile after 17.06
|
|
docker build -t buildkit_poc:test -f ./hack/dockerfiles/test.Dockerfile --force-rm .
|
|
docker run --cap-add=SYS_ADMIN buildkit_poc:test go test ${TESTFLAGS:--v} ${TESTPKGS:-./...} |