kube/testapp/certman-istio-controller/Makefile

13 lines
208 B
Makefile

CC=docker
APP=certman-istio-controller
TAG=127.0.0.1:5000/cert/$(APP):$(VERSION)
all: build push
build:
$(CC) build --build-arg VERSION=$(VERSION) -t $(TAG) .
push:
$(CC) push $(TAG)
.PHONY: build push