From d0e5a4bb3cfb90b53d25d6781d12157ba72e4049 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 13 Sep 2017 22:56:06 +0200 Subject: [PATCH] Adding extra mount / to /host on docker invocation for linux wheels --- cibuildwheel/linux.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cibuildwheel/linux.py b/cibuildwheel/linux.py index 76952fcf..80a97db3 100644 --- a/cibuildwheel/linux.py +++ b/cibuildwheel/linux.py @@ -120,6 +120,7 @@ def build(project_dir, package_name, output_dir, test_command, test_requires, be '-i', '-v', '%s:/project' % os.path.abspath(project_dir), '-v', '%s:/output' % os.path.abspath(output_dir), + '-v', '/:/host', docker_image, '/bin/bash'], stdin=subprocess.PIPE, universal_newlines=True)