Node info example

This commit is contained in:
Alex
2017-01-03 23:14:59 +00:00
parent f566c65db4
commit f9fd0a08b5
4 changed files with 33 additions and 0 deletions

View File

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