From 4b72b6177321ef24b6c7af2354fb980db69e2aec Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Mon, 5 Feb 2018 15:08:19 +0900 Subject: Add Makefile target for updating docker image --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 4030080..124f243 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,11 @@ clean: rm -rf msgpack/__pycache__ rm -rf test/__pycache__ +.PHONY: update-docker +update-docker: + docker pull quay.io/pypa/manylinux1_i686 + docker pull quay.io/pypa/manylinux1_x86_64 + .PHONY: linux-wheel linux-wheel: docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh -- cgit v1.2.1