Skip to content
Snippets Groups Projects
Commit ab4d95c4 authored by Alex Ellis's avatar Alex Ellis
Browse files

Update figlet's watchdog


Signed-off-by: default avatarAlex Ellis <alexellis2@gmail.com>
parent 6799f61f
No related branches found
No related tags found
No related merge requests found
FROM alpine:3.8
FROM openfaas/classic-watchdog:0.14.4 as watchdog
RUN apk --no-cache add curl \
&& curl -sL https://github.com/openfaas/faas/releases/download/0.13.0/fwatchdog > /usr/bin/fwatchdog \
&& chmod +x /usr/bin/fwatchdog
FROM alpine:3.9
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
RUN apk add --no-cache figlet
......
FROM alpine:3.8
FROM openfaas/classic-watchdog:0.14.4 as watchdog
RUN apk --no-cache add curl \
&& curl -sL https://github.com/openfaas/faas/releases/download/0.13.0/fwatchdog-armhf > /usr/bin/fwatchdog \
&& chmod +x /usr/bin/fwatchdog
FROM alpine:3.9
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
RUN apk add --no-cache figlet
......@@ -11,3 +12,4 @@ ENV fprocess="figlet"
HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1
CMD ["fwatchdog"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment