.PHONY: run test build docker-build

run:
	go run ./cmd/server

test:
	go test ./...

build:
	go build -o teammate ./cmd/server

docker-build:
	docker build -f build/dockerfile -t hamkar:local .
