Files
status-proxy/Makefile
2023-06-21 02:11:14 -07:00

15 lines
267 B
Makefile

SHELL = /bin/bash
.DEFAULT_GOAL := build
IMAGE_NAME = git.michaellisano.com/mcf/status-proxy:latest
build:
pipenv requirements > requirements.txt
docker build -t $(IMAGE_NAME) .
push:
docker push $(IMAGE_NAME)
run:
pipenv run hypercorn api.py -b 0.0.0.0:8080