-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
37 lines (27 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
NAME = cron
TAG = latest
IMAGE_NAME := panubo/$(NAME)
.PHONY: help build push clean
help:
@printf "$$(grep -hE '^\S+:.*##' $(MAKEFILE_LIST) | sed -e 's/:.*##\s*/:/' -e 's/^\(.\+\):\(.*\)/\\x1b[36m\1\\x1b[m:\2/' | column -c2 -t -s :)\n"
build: ## Builds docker image latest
docker build --pull -t $(IMAGE_NAME):latest .
push: ## Pushes the docker image to hub.docker.com
# Don't --pull here, we don't want any last minute upsteam changes
docker build -t $(IMAGE_NAME):$(TAG) .
docker tag $(IMAGE_NAME):$(TAG) $(IMAGE_NAME):latest
docker push $(IMAGE_NAME):$(TAG)
docker push $(IMAGE_NAME):latest
clean: ## Remove built images
docker rmi $(IMAGE_NAME):latest || true
docker rmi $(IMAGE_NAME):$(TAG) || true
# Dev targets
.PHONY: bash run
bash: empty ## Runs a bash shell in the docker image
docker run --rm -it -v $(PWD)/empty:/crontab $(IMAGE_NAME):latest bash
empty:
touch empty
run: empty ## Runs the docker image in a test mode
docker run --name cron --rm -it -v $(PWD)/empty:/crontab $(IMAGE_NAME):latest
_ci_test:
true