11 lines
217 B
Makefile
11 lines
217 B
Makefile
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)
|