Trim the dockerfile and re-use the virtualenv we already have.

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2015-09-16 16:45:26 -04:00
commit 8b29a50b52
3 changed files with 17 additions and 21 deletions

View file

@ -4,8 +4,4 @@ set -ex
TAG="docker-compose"
docker build -t "$TAG" .
docker run \
--rm \
--volume="$(pwd):/code" \
--entrypoint="script/build-linux-inner" \
"$TAG"
docker run --rm --entrypoint="script/build-linux-inner" "$TAG"