aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: dbc314980681cd63587d141126dfa188ed4f6cb7 (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_BUILDKIT=1 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