Fix docker image build script when using universal wheels

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-01-10 16:43:26 -08:00
commit 19190ea0df
2 changed files with 4 additions and 4 deletions

View file

@ -12,5 +12,4 @@ VERSION="$(python setup.py --version)"
./script/build/write-git-sha
python setup.py sdist bdist_wheel
cp dist/docker-compose-$VERSION-py2.py3-none-any.whl dist/docker-compose-release-py2.py3-none-any.whl
docker build -t docker/compose:$TAG -f Dockerfile.run .
docker build --build-arg version=$VERSION -t docker/compose:$TAG -f Dockerfile.run .