13 lines
305 B
Makefile
Raw Normal View History

2018-07-18 18:20:01 +03:00
VERSION=2.1.0
2017-07-27 20:37:00 +03:00
PROJECT=thingsboard
APP=cassandra-setup
build:
cp ../../application/target/thingsboard.deb .
docker build --pull -t ${PROJECT}/${APP}:${VERSION} -t ${PROJECT}/${APP}:latest .
rm thingsboard.deb
push: build
docker push ${PROJECT}/${APP}:${VERSION}
docker push ${PROJECT}/${APP}:latest