We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec1d58 commit ac57d51Copy full SHA for ac57d51
Makefile
@@ -0,0 +1,16 @@
1
+NAME=deployment-manager
2
+VERSION=0.1.3
3
+REGISTRY=containers.cisco.com/donaldh
4
+
5
+build: ## Build the docker image
6
+ docker build -t "$(NAME):$(VERSION)" -f Dockerfile .
7
8
+upload: ## Upload image to registry
9
+ docker tag "$(NAME):$(VERSION)" "$(REGISTRY)/$(NAME):$(VERSION)"
10
+ docker push "$(REGISTRY)/$(NAME):$(VERSION)"
11
12
+help: ## This help
13
+ @awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
14
15
+.PHONY: help
16
+.DEFAULT_GOAL := help
0 commit comments