13 lines
206 B
Makefile
13 lines
206 B
Makefile
CC=docker
|
|
APP=certman-istio-operator
|
|
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
|