feat: added makefile for build assist

This commit is contained in:
Alyx Gryczewski 2024-07-28 13:11:51 -04:00
parent 64ff87a986
commit aac894b676

10
Makefile Normal file
View File

@ -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}