From dcee0ac7c41d6c6ff23bce29b382340b71dbf00c Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Sun, 18 Feb 2018 12:39:38 -0500 Subject: [PATCH] add makefile Signed-off-by: Jess Frazelle --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..623249e --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: build +build: ## Builds all the dockerfiles in the repository. + ./build-all.sh + +.PHONY: latest-versions +latest-versions: ## Checks all the latest versions of the Dockerfile contents. + ./latest-versions.sh + +.PHONY: test +test: ## Runs the tests on the repository. + ./test.sh + +.PHONY: help +help: + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'