Move build dependencies like setuptools wheel numpy into docker image (#468)

* Move build dependencies like setuptools wheel numpy into docker image, so won't install them again and again for docker build

* revert the changes in install_deps.sh
This commit is contained in:
Hector Li 2019-02-11 21:29:36 -08:00 committed by GitHub
parent 892c0653cc
commit e7c1b774e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -562,7 +562,8 @@ def main():
cmake_extra_args = ['-A','x64','-T', toolset, '-G', 'Visual Studio 15 2017']
if is_ubuntu_1604():
install_ubuntu_deps(args)
install_python_deps()
if not is_docker():
install_python_deps()
if (args.enable_pybind and is_windows()):
install_python_deps()
if (not args.skip_submodule_sync):