IMAGE ?= registry.i80.dk/gitea/citti
TAG   ?= latest

.PHONY: run install build push

run:
	python app.py

install:
	pip install -r requirements.txt

build:
	docker build -t $(IMAGE):$(TAG) .

push: build
	docker push $(IMAGE):$(TAG)
