mirror of https://github.com/docker/compose.git
Clean before doing a build so that we don't include stale build artifacts
in the binaries. Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
dbc68ca747
commit
9be748f85c
|
@ -2,6 +2,8 @@
|
|||
|
||||
set -ex
|
||||
|
||||
./script/clean
|
||||
|
||||
TAG="docker-compose"
|
||||
docker build -t "$TAG" .
|
||||
docker run \
|
||||
|
|
|
@ -3,7 +3,9 @@ set -ex
|
|||
|
||||
PATH="/usr/local/bin:$PATH"
|
||||
|
||||
./script/clean
|
||||
rm -rf venv
|
||||
|
||||
virtualenv -p /usr/local/bin/python venv
|
||||
venv/bin/pip install -r requirements.txt
|
||||
venv/bin/pip install -r requirements-build.txt
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
find . -type f -name '*.pyc' -delete
|
||||
find -name __pycache__ -delete
|
||||
rm -rf docs/_site build dist docker-compose.egg-info
|
||||
|
|
Loading…
Reference in New Issue