aboutsummaryrefslogtreecommitdiff
path: root/ping_tester/Makefile
blob: 8e15cbeae0f0d46357bcef6d9680901376a4b223 (plain)
1
2
3
4
5
6
7
8
9
10
11
IMAGE=docker.crute.me/ping_tester:latest

all:
	docker build -t $(IMAGE) .

all-no-cache:
	docker build --no-cache -t $(IMAGE) .

publish:
	docker push $(IMAGE)