This is an automated email from the ASF dual-hosted git repository.
manuseth pushed a commit to branch v1.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/v1.x by this push:
new 9222fa1 Remove extra --build-arg causing docker command to fail.
(#19411)
9222fa1 is described below
commit 9222fa170c0bf4611e8e80ce9770a69bf307c598
Author: Joe Evans <[email protected]>
AuthorDate: Thu Oct 22 23:31:58 2020 -0700
Remove extra --build-arg causing docker command to fail. (#19411)
Co-authored-by: Joe Evans <[email protected]>
---
cd/python/docker/python_images.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cd/python/docker/python_images.sh
b/cd/python/docker/python_images.sh
index 63d5326..a93d578 100755
--- a/cd/python/docker/python_images.sh
+++ b/cd/python/docker/python_images.sh
@@ -45,7 +45,7 @@ fi
build() {
# NOTE: Ensure the correct context root is passed in when building -
Dockerfile expects ./wheel_build
- docker build -t "${image_name}" --build-arg --build-arg
BASE_IMAGE="${base_image}" --build-arg MXNET_COMMIT_ID=${GIT_COMMIT} -f
${resources_path}/Dockerfile ./wheel_build
+ docker build -t "${image_name}" --build-arg BASE_IMAGE="${base_image}"
--build-arg MXNET_COMMIT_ID=${GIT_COMMIT} -f ${resources_path}/Dockerfile
./wheel_build
}
test() {