Makefile

11 lines | 234 B Blame History Raw Download
VERSION=1.2.4
PROJECT=thingsboard
APP=application

build:
	cp ../../application/target/thingsboard.deb .
	docker build --pull -t ${PROJECT}/${APP}:${VERSION} .
	rm thingsboard.deb

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