compose/script/build-linux
Daniel Nephin 8b29a50b52 Trim the dockerfile and re-use the virtualenv we already have.
Signed-off-by: Daniel Nephin <dnephin@docker.com>
2015-09-17 18:46:29 -04:00

8 lines
131 B
Bash
Executable File

#!/bin/bash
set -ex
TAG="docker-compose"
docker build -t "$TAG" .
docker run --rm --entrypoint="script/build-linux-inner" "$TAG"