thingsboard/docker/tb/Makefile

11 lines
234 B
Makefile
Raw Normal View History

2017-05-24 16:40:19 +03:00
VERSION=1.2.4
2017-05-10 21:01:06 +03:00
PROJECT=thingsboard
APP=application
build:
2017-05-17 12:08:10 +03:00
cp ../../application/target/thingsboard.deb .
2017-05-10 21:01:06 +03:00
docker build --pull -t ${PROJECT}/${APP}:${VERSION} .
2017-05-17 13:17:36 +03:00
rm thingsboard.deb
2017-05-10 21:01:06 +03:00
push: build
2017-05-17 13:17:36 +03:00
docker push ${PROJECT}/${APP}:${VERSION}