kube/testapp/srv/Makefile
2019-08-03 22:31:25 +02:00

13 lines
190 B
Makefile

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