rgee0 1cd7ce2449 New and updated sample function Dockerfiles & deleted NodeBaseFunction
Signed-off-by: rgee0 <richard@technologee.co.uk>
2017-08-13 21:47:40 +01:00

17 lines
387 B
Docker

FROM alpine:latest
RUN apk --update add nodejs nodejs-npm
ADD https://github.com/alexellis/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
#COPY ./fwatchdog /usr/bin/
RUN chmod +x /usr/bin/fwatchdog
COPY package.json .
RUN npm i
COPY handler.js .
COPY sendColor.js .
COPY sample_response.json .
ENV fprocess="node handler.js"
CMD ["fwatchdog"]