From 71bbc3e83e620f051bf193d3e38268e11cd87906 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Tue, 10 Feb 2026 22:16:57 +0100 Subject: [PATCH] feat: add Docker build, tag, push, and deploy commands to Makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Makefile b/Makefile index 5b573fc..14fd38c 100644 --- a/Makefile +++ b/Makefile @@ -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 \ No newline at end of file