diff --git a/README.md b/README.md index 487b52daf9dcedeffcdf67604b0dfbf8de4f8c0e..48312560db3778c695c02d0bd555ef94d909ea06 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ ska/tango-starter | Example image that demonstrates how to package the Star To build the images, from the root of this repository execute: cd docker - make + make build ## Launching TANGO applications and services The docker-compose directory contains a set of files that can be used to run a diff --git a/docker/Makefile b/docker/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..452f001cbe6b4346b86f93d612effead868bc11c --- /dev/null +++ b/docker/Makefile @@ -0,0 +1,8 @@ +.PHONY: tango help +.DEFAULT_GOAL := help + +build: ## build all SKA TANGO docker images + $(MAKE) -C tango build + +help: ## show this help. + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'