Use released bindep

bindep now supports alpine, so stop installing from git.

Change-Id: I441740379fc4cad374e3e6cb85b02e706b1575cc
This commit is contained in:
Monty Taylor 2018-07-16 12:22:36 -05:00
parent 9b9c7a099d
commit a34e7f031f
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 1 additions and 7 deletions

View File

@ -129,13 +129,7 @@ def build(args):
log.info("Building bindep container")
# Create bindep container
with docker_container("python-base", tag="bindep") as cont:
# TODO(mordred) Install from pip once bindep has a new release.
# Install from source for now, since apk support hasn't landed
cont.run("apk add git")
cont.run(
"pip install"
" git+https://git.openstack.org/openstack-infra/bindep.git"
"#egg=bindep")
cont.run("pip install bindep")
# Use bindep container to get list of packages needed in the final
# container. It returns 1 if there are packages that need to be installed.