10 lines
229 B
Makefile
10 lines
229 B
Makefile
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}
|