From 3d2be994ad9100cd06835aa467f9b4680e3e7a62 Mon Sep 17 00:00:00 2001 From: Joseph Pintozzi Date: Mon, 29 Apr 2019 21:44:14 -0700 Subject: [PATCH] Expanding makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 1c290c4..707faae 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,10 @@ test: lint: pycodestyle */*.py --show-source --ignore=E501 +docker: + docker build -t pyro2927/southwestcheckin . + +release: + docker push pyro2927/southwestcheckin + .PHONY: all