mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
12 lines
293 B
Docker
12 lines
293 B
Docker
FROM alpine:latest
|
|
|
|
ADD https://github.com/alexellis/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin
|
|
# COPY ./fwatchdog /usr/bin/
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
# Populate example here
|
|
# ENV fprocess="wc -l"
|
|
|
|
HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1
|
|
CMD ["fwatchdog"]
|