diff --git a/Makefile b/Makefile index 9247cc39..da8e7c92 100644 --- a/Makefile +++ b/Makefile @@ -25,11 +25,18 @@ fake_static: test: fake_static go test -cover ./... +.PHONY: build build: static CGO_ENABLED=0 go build -ldflags "-s -w" +.PHONY: docker +docker: + @docker build -t amir20/dozzle . + +.PHONY: dev dev: yarn dev +.PHONY: int int: docker-compose -f integration/docker-compose.test.yml up --build --force-recreate --exit-code-from integration