Add makefile for docker building

This commit is contained in:
Salmonllama 2020-09-06 18:32:15 -04:00
parent 48b957f0ba
commit 14161a9dd8

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
USERNAME=salmonllama
IMAGE=fsbot
TAG := $(shell git describe --tags)
docker:
echo ${TAG}
docker build -t ${USERNAME}/${IMAGE}:${TAG} .