added missing file to dockerfile

This commit is contained in:
icanos 2020-02-29 16:06:51 +00:00
parent d2beca6fb2
commit b8f87d47a5
3 changed files with 5 additions and 3 deletions

View file

@ -14,6 +14,7 @@ COPY ./mqtt.js /plejd/
COPY ./package.json /plejd/
COPY ./ble.js /plejd/
COPY ./ble.bluez.js /plejd/
COPY ./scene.manager.js /plejd/
ARG BUILD_ARCH
@ -67,4 +68,5 @@ LABEL \
org.label-schema.schema-version="1.0" \
org.label-schema.usage="https://github.com/icanos/hassio-plejd/tree/master/README.md" \
org.label-schema.vcs-ref=${BUILD_REF} \
org.label-schema.vcs-url="https://github.com/icanos/hassio-plejd"
org.label-schema.vcs-url="https://github.com/icanos/hassio-plejd"

View file

@ -1,6 +1,6 @@
{
"name": "Plejd",
"version": "0.4.0",
"version": "0.4.1",
"slug": "plejd",
"description": "Adds support for the Swedish home automation devices from Plejd.",
"url": "https://github.com/icanos/hassio-plejd/",

View file

@ -4,7 +4,7 @@ const fs = require('fs');
const PlejdService = require('./ble.bluez');
const SceneManager = require('./scene.manager');
const version = "0.4.0";
const version = "0.4.1";
async function main() {
console.log('starting Plejd add-on v. ' + version);