From bce42b5bb4ebe05402cf8ea0443de2c858a9e201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Fri, 15 Jun 2018 10:57:26 +0200 Subject: [PATCH] Updated makefiles from senpy --- .makefiles/python.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/.makefiles/python.mk b/.makefiles/python.mk index b5f58bf..3679d7b 100644 --- a/.makefiles/python.mk +++ b/.makefiles/python.mk @@ -26,6 +26,7 @@ Dockerfile-%: Dockerfile.template ## Generate a specific dockerfile (e.g. Docke quick_build: $(addprefix build-, $(PYMAIN)) build: $(addprefix build-, $(PYVERSIONS)) ## Build all images / python versions + docker tag $(IMAGEWTAG)-python$(PYMAIN) $(IMAGEWTAG) build-%: version Dockerfile-% ## Build a specific version (e.g. build-2.7) docker build -t '$(IMAGEWTAG)-python$*' -f Dockerfile-$* .;