mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
19 lines
313 B
Docker
19 lines
313 B
Docker
FROM node:6.9.1-alpine
|
|
|
|
ADD https://github.com/openfaas/faas/releases/download/0.7.0/fwatchdog /usr/bin
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
WORKDIR /root/
|
|
|
|
COPY package.json .
|
|
|
|
RUN npm i
|
|
COPY handler.js .
|
|
|
|
ENV fprocess="node handler.js"
|
|
|
|
HEALTHCHECK --interval=1s CMD [ -e /tmp/.lock ] || exit 1
|
|
|
|
CMD ["fwatchdog"]
|
|
|