Merge pull request #36 from YannickJadoul/linux-docker-host-mount

Adding extra mount / to /host on docker invocation for linux wheels
This commit is contained in:
Joe Rickerby
2017-09-19 20:11:09 +01:00
committed by GitHub
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -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)