aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 3e26ce0c1f718eabb6e59c04326d464a68047e0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.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 rm -f clog
	docker run --name clog  -p 8888:8888 -d clog:latest

build:
	kodev build

run:
	kodev run