From d1c2035234d37fc4e614d1389637b4f2aa24910e Mon Sep 17 00:00:00 2001 From: Joe Evans Date: Fri, 23 Oct 2020 14:00:47 -0700 Subject: [PATCH] Remove extra --build-arg causing docker command to fail. (#19412) Co-authored-by: Joe Evans --- 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 63d5326bc992..a93d5785d73e 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() {