From 14161a9dd8dc3212acafafb717b81952e6d9e1ca Mon Sep 17 00:00:00 2001 From: Salmonllama Date: Sun, 6 Sep 2020 18:32:15 -0400 Subject: [PATCH] Add makefile for docker building --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a50a986 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + USERNAME=salmonllama + IMAGE=fsbot + TAG := $(shell git describe --tags) + +docker: + echo ${TAG} + docker build -t ${USERNAME}/${IMAGE}:${TAG} . \ No newline at end of file