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

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

push: build
	docker push ${TAG}

clean:
	go clean

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