From 4efb80092512b702fa3f137bc3bef9f0faaf385d Mon Sep 17 00:00:00 2001 From: Manfred Touron Date: Tue, 27 Nov 2018 10:51:41 +0100 Subject: [PATCH] build: add 'make docker.build' --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c7cbcb117..af5ec4fc5 100644 --- a/Makefile +++ b/Makefile @@ -11,3 +11,7 @@ update_examples: for dir in $(sort $(dir $(wildcard examples/*/*))); do (cd $$dir && make); done @echo "now you can run:" @echo " git commit examples -m \"chore: update examples\"" + +.PHONY: docker.build +docker.build: + docker build -t moul/depviz .