kube/testapp/certman-istio-operator/Makefile
2019-08-16 13:43:56 +02:00

13 lines
207 B
Makefile

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