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-$* .;