aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2cd2ee25e4be71436f04472b9880144d806ae46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TAG = registry.moccu/gowiki

all: push

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)