mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
This updates fwatchdog to latest version (0.7.9) in all templates in sample-functions and faas version in the documentation Signed-off-by: Ivana Yovcheva (VMware) <iyovcheva@vmware.com>
12 lines
308 B
Docker
12 lines
308 B
Docker
FROM arm64v8/alpine:3.6
|
|
|
|
ADD https://github.com/alexellis/faas/releases/download/0.7.9/fwatchdog-arm64 /usr/bin/fwatchdog
|
|
# 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"]
|