You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
264 B
Makefile

IMAGE_NAME=registry.runcible.io/demo-helm
IMAGE_VERSION=1.1.0
push-app-image: build-app-image
docker push $(IMAGE_NAME):$(IMAGE_VERSION)
build-app-image:
docker build -t $(IMAGE_NAME):$(IMAGE_VERSION) ./app/backend
check:
echo $(IMAGE_NAME):$(IMAGE_VERSION)