Enable routing to Alexa functions

Add first Alexa-compatible function HostnameIntent
This commit is contained in:
Alex Ellis
2016-12-30 18:54:57 +00:00
parent 2b9a1c10e4
commit 9656b530c4
9 changed files with 156 additions and 25 deletions

View File

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