feat: add Docker build, tag, push, and deploy commands to Makefile

This commit is contained in:
2026-02-10 22:16:57 +01:00
parent 961fbed6c3
commit 71bbc3e83e

View File

@@ -18,3 +18,14 @@ css:
dev:
go run ./cmd/heatguard --dev --port 8080
docker-build:
docker build -t heatguard:latest .
docker-push:
docker tag heatguard:latest somegit.dev/vikingowl/heatguard:latest
docker push somegit.dev/vikingowl/heatguard:latest
docker-deploy:
make docker-build
make docker-push