Skip to content

Commit

Permalink
Remove extra --build-arg causing docker command to fail. (apache#19411)
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Evans <[email protected]>
  • Loading branch information
josephevans and Joe Evans committed Dec 8, 2020
1 parent 3474796 commit 438d277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cd/python/docker/python_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 438d277

Please sign in to comment.