Makefile

13 lines | 203 B Blame History Raw Download
VERSION=k8stest
PROJECT=thingsboard
APP=cassandra

all: build

build:
	docker build --pull -t ${PROJECT}/${APP}:${VERSION} .

push: build
	docker push ${PROJECT}/${APP}:${VERSION}

.PHONY: all build push