aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: d4ace718e27659eb9caf6c40983babdd2bb90684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
TAG = 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)