mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
16 lines
439 B
Makefile
16 lines
439 B
Makefile
|
.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}'
|