feat: add Docker build, tag, push, and deploy commands to Makefile
This commit is contained in:
11
Makefile
11
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
|
||||
Reference in New Issue
Block a user