Browse Source

Add variable DOCKER_BUILD_ARGS to build-deb script

Some containers were being built (`docker build`) without
the DOCKER_BUILD_ARGS variable, which was causing some
issues because of the lack of network proxy configuration.

Fixes #29132

Signed-off-by: Luiz Svoboda <luizek@gmail.com>
Luiz Svoboda 8 years ago
parent
commit
63aaf5e316
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hack/make/build-deb

+ 1 - 1
hack/make/build-deb

@@ -82,7 +82,7 @@ set -e
 			RUN dpkg-buildpackage -uc -us -I.git
 		EOF
 		tempImage="docker-temp/build-deb:$version"
-		( set -x && docker build -t "$tempImage" -f "$DEST/$version/Dockerfile.build" . )
+		( set -x && docker build ${DOCKER_BUILD_ARGS} -t "$tempImage" -f "$DEST/$version/Dockerfile.build" . )
 		docker run --rm "$tempImage" bash -c 'cd .. && tar -c *_*' | tar -xvC "$DEST/$version"
 		docker rmi "$tempImage"
 	done