From 6a164bd73b0f2a76da24d62dea48161c99a7745a Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 5 Apr 2017 11:44:02 -0400 Subject: docker --rm to clean up unneeded containers --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1e2f40b0..692a974d 100644 --- a/Makefile +++ b/Makefile @@ -70,8 +70,8 @@ wheel: tox -c tox_wheels.ini $(ARGS) manylinux: - docker run -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build - docker run -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build + docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/ci/manylinux.sh build + docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/ci/manylinux.sh build kit_upload: twine upload dist/* -- cgit v1.2.1