mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 17:26:47 +00:00
This updates alpine version to 3.7 in sample-functions, gateway and some markdown docas. Signed-off-by: Ivana Yovcheva (VMware) <iyovcheva@vmware.com>
13 lines
300 B
Docker
13 lines
300 B
Docker
FROM alpine:3.7
|
|
|
|
ADD https://github.com/openfaas/faas/releases/download/0.8.0/fwatchdog-armhf /usr/bin/fwatchdog
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
RUN apk add --no-cache figlet
|
|
|
|
# Populate example here
|
|
ENV fprocess="figlet"
|
|
|
|
HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1
|
|
CMD ["fwatchdog"]
|