diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..79cabfa --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +VERSION=0.`git rev-list --count HEAD` +.PHONY: black + +DOCKER_BUILD=docker build + +ifeq ($(shell uname -m), arm64) +DOCKER_BUILD=docker buildx build --platform linux/amd64 +endif + +build: + $(DOCKER_BUILD) -t registry.domandoman.xyz/fooder/app -f Dockerfile . + +push: + docker push registry.domandoman.xyz/fooder/app