Plumb in pypi mirror config from build host

If the build host has pypi mirror configured, we should use it inside of
the container builds. Bind-mount build-host pip config.

Change-Id: Ib1540dfe3c4172eeb8a70b29becd73a2828b3efb
This commit is contained in:
Monty Taylor 2018-07-13 08:55:37 -05:00
parent aafe28f839
commit ea3d7cbf2a
1 changed files with 8 additions and 0 deletions

View File

@ -52,6 +52,14 @@ class ContainerContext(object):
def __init__(self, base, volumes):
self._base = base
self._volumes = volumes or []
# bind-mount the pip.conf from the host so that any configured
# pypi mirrors will be used inside of the image builds.
if os.path.exists('/etc/pip.conf'):
self._volumes.append('/etc/pip.conf:/etc/pip.conf')
if os.path.exists(os.path.expanduser('~/.config/pip/pip.conf')):
self._volumes.append('{host}:{guest}'.format(
host=os.path.expanduser('~/.config/pip/pip.conf'),
guest='/root/.config/pip/pip.conf'))
self.run_id = self.create()
self._cont = sh.docker.bake("exec", self.run_id, "sh", "-c")