소스 검색

Merge pull request #19181 from coolljt0725/enable_build_syscall_test

Make .ensure-syscall-test to use build-arg
Tianon Gravi 9 년 전
부모
커밋
335764a591
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hack/make/.ensure-syscall-test

+ 1 - 1
hack/make/.ensure-syscall-test

@@ -4,5 +4,5 @@ set -e
 # Build a C binary for cloning a userns for seccomp tests
 # and compile it for target daemon
 if [ "$DOCKER_ENGINE_GOOS" = "linux" ]; then
-	docker build -qt syscall-test contrib/syscall-test > /dev/null
+	docker build ${DOCKER_BUILD_ARGS} -qt syscall-test contrib/syscall-test > /dev/null
 fi