aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ef538c7a214d48a6ea1de4294d39d8e7effa7142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
TAG = dim13/gowiki

build: clean
	docker build -t ${TAG} --rm --no-cache .

push: build
	docker push ${TAG}

clean:
	go clean

rmi:
	docker rmi $(docker images -f 'dangling=true' -q)