Some checks failed
Build and Deploy citti / build-and-deploy (push) Failing after 5s
Match BlaaAi deployment pattern: debian-host runner, Harbor registry, nomad CLI directly, NOMAD_ADDR=https://nomad.i80.dk:4646. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
234 B
Makefile
17 lines
234 B
Makefile
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)
|