This commit is contained in:
2023-06-21 01:50:08 -07:00
commit be1541a992
6 changed files with 448 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
SHELL = /bin/bash
.DEFAULT_GOAL := build
IMAGE_NAME = git.michaellisano.com/mcf/uptime-monitor:latest
build:
pipenv requirements > requirements.txt
docker build -t $(IMAGE_NAME) .
push:
docker push $(IMAGE_NAME)