Files
web-erika/Makefile
Henrik Jess Nielsen 9b1398fec5
All checks were successful
Build and Deploy Erika CV / build-and-deploy (push) Successful in 35s
fix: local dev port 9234, Nomad dynamic ports unchanged
2026-04-19 17:29:42 +02:00

17 lines
355 B
Makefile

.PHONY: run install docker-build docker-run stop
run: install
FLASK_ENV=development PORT=9234 python3 app.py
install:
pip3 install -r requirements.txt --quiet
docker-build:
docker build -t web-erika .
docker-run: docker-build
docker run --rm -p 9234:9234 -e PORT=9234 web-erika
stop:
@docker ps -q --filter name=web-erika | xargs -r docker stop