Merge pull request #659 from tonistiigi/fix-dfextall

dockerfile: fix building dfextall
This commit is contained in:
Akihiro Suda
2018-10-03 10:31:39 +09:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
// +build !dfsecrets
// +build !dfsecrets,!dfextall
package instructions

View File

@@ -13,4 +13,7 @@ docker run --rm -v /tmp --privileged $iid go test ${TESTFLAGS:--v} ${TESTPKGS:-.
docker run --rm $iid go build ./frontend/gateway/client
docker run --rm $iid go build ./frontend/dockerfile/cmd/dockerfile-frontend
docker run --rm $iid go build -tags dfrunmount ./frontend/dockerfile/cmd/dockerfile-frontend
docker run --rm $iid go build -tags "dfrunmount dfsecrets" ./frontend/dockerfile/cmd/dockerfile-frontend
docker run --rm $iid go build -tags dfextall ./frontend/dockerfile/cmd/dockerfile-frontend