aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 003b2aade0a7a411e96e793fdd24a2b0427b2f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: all clean docker-build run

all: build

clean:
	kodev clean
	docker rm -f clog
	docker rmi -f clog:latest

docker-build:
	docker build -t clog .

docker-run:
	docker run --name clog  -p 8888:8888 -p 8889:8889 -d clog:latest

build:
	kodev build

run:
	kodev run