.PHONY: all clean docker-build run

all: build

clean:
	kodev clean

docker-build:
	docker build -t clog .

build:
	kodev build

run:
	kodev run