status-proxy/Makefile

11 lines
217 B
Makefile
Raw Normal View History

2023-06-21 01:50:08 -07:00
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)