Add changecolorintent

This commit is contained in:
Alex Ellis
2016-12-30 19:24:25 +00:00
parent 8734a3a5ac
commit 4573f14f65
10 changed files with 129 additions and 5 deletions

View File

@ -0,0 +1,12 @@
FROM alpine:latest
RUN apk --update add nodejs
COPY ./fwatchdog /usr/bin/
COPY package.json .
COPY handler.js .
COPY sendColor.js .
COPY sample.json .
RUN npm i
ENV fprocess="node handler.js"
CMD ["fwatchdog"]