diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..60ef28e --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +USERNAME=salmonllama +IMAGE=fashionscape-api +TAG := $(shell git describe --tags) +BUILD=${USERNAME}/${IMAGE}:${TAG} +LATEST=${USERNAME}/${IMAGE}:latest + +docker: + echo ${TAG} + podman build -t ${BUILD} . + podman tag ${BUILD} ${LATEST} \ No newline at end of file