Files
faas/sample-functions/AlpineFunction/Dockerfile.arm64
2019-06-25 21:19:48 +01:00

13 lines
276 B
Docker

FROM openfaas/classic-watchdog:0.14.4 as watchdog
FROM alpine:3.9
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
# Populate example here
# ENV fprocess="wc -l"
HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1
CMD ["fwatchdog"]