mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
9 lines
204 B
Docker
9 lines
204 B
Docker
FROM alpine:latest
|
|
|
|
ADD https://github.com/alexellis/faas/releases/download/v0.3-alpha/fwatchdog /usr/bin
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
# Populate example here
|
|
# ENV fprocess="wc -l"
|
|
CMD ["fwatchdog"]
|