blob: f8ecad50bd4bdb67832e68a529ae42aff36bd4c9 [file] [log] [blame]
David K. Bainbridge0a7cdbb2017-07-14 11:36:13 -07001.DEFAULT_GOAL := help
2
3help:
4 @echo "Available targets:"
5 @echo " build - builds any artifacts"
6 @echo " publish - publishes any built artifacts to a deployment server"
7 @echo " clean - remove tempory files and build artifacts"
8 @echo " test - executes any unit tests on the project"
9 @echo " help - this message"
10 @echo ""
11 @echo "Available environment variables:"
12 @echo " PROJECT_PREFIX - defines a prefix to prepend to all Docker image names"
13 @echo " PACKAGE_TAG - defines the TAG to use on the public Docker image that is the build artifact"
14 @echo " REGISTRY - name of the registry to which to publish Docker images"
15 @echo " DOCKER_ARGS - additional arguments to pass to the Docker build command"