Merge pull request #66 from icanos/feature/scenes
added missing file to dockerfile
This commit is contained in:
commit
5dc6888d67
3 changed files with 5 additions and 3 deletions
|
|
@ -14,6 +14,7 @@ COPY ./mqtt.js /plejd/
|
||||||
COPY ./package.json /plejd/
|
COPY ./package.json /plejd/
|
||||||
COPY ./ble.js /plejd/
|
COPY ./ble.js /plejd/
|
||||||
COPY ./ble.bluez.js /plejd/
|
COPY ./ble.bluez.js /plejd/
|
||||||
|
COPY ./scene.manager.js /plejd/
|
||||||
|
|
||||||
ARG BUILD_ARCH
|
ARG BUILD_ARCH
|
||||||
|
|
||||||
|
|
@ -67,4 +68,5 @@ LABEL \
|
||||||
org.label-schema.schema-version="1.0" \
|
org.label-schema.schema-version="1.0" \
|
||||||
org.label-schema.usage="https://github.com/icanos/hassio-plejd/tree/master/README.md" \
|
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-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"
|
||||||
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Plejd",
|
"name": "Plejd",
|
||||||
"version": "0.4.0",
|
"version": "0.4.1",
|
||||||
"slug": "plejd",
|
"slug": "plejd",
|
||||||
"description": "Adds support for the Swedish home automation devices from Plejd.",
|
"description": "Adds support for the Swedish home automation devices from Plejd.",
|
||||||
"url": "https://github.com/icanos/hassio-plejd/",
|
"url": "https://github.com/icanos/hassio-plejd/",
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ const fs = require('fs');
|
||||||
const PlejdService = require('./ble.bluez');
|
const PlejdService = require('./ble.bluez');
|
||||||
const SceneManager = require('./scene.manager');
|
const SceneManager = require('./scene.manager');
|
||||||
|
|
||||||
const version = "0.4.0";
|
const version = "0.4.1";
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
console.log('starting Plejd add-on v. ' + version);
|
console.log('starting Plejd add-on v. ' + version);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue