From cc7476a9fc50f0ddaea3778bb21b6d4386d0ccb7 Mon Sep 17 00:00:00 2001 From: Joe Evans Date: Thu, 22 Oct 2020 16:06:26 -0700 Subject: [PATCH] Remove extra --build-arg causing docker command to fail. --- 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() {