.PHONY: test build docker

test:
	go test ./...

build:
	go build -trimpath -ldflags="-s -w" -o dist/syncdb ./cmd/syncdb

docker:
	docker build -t syncdb:dev .