From 7975e53fea859a31e499159aa68372907b9b8b32 Mon Sep 17 00:00:00 2001 From: "Martin Dekov (VMware)" Date: Mon, 17 Sep 2018 05:50:19 -0700 Subject: [PATCH] Bump watchdog to 0.4.0 Signed-off-by: Martin Dekov (VMware) --- template/python27-flask/Dockerfile | 2 +- template/python3-flask-armhf/Dockerfile | 2 +- template/python3-flask/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/template/python27-flask/Dockerfile b/template/python27-flask/Dockerfile index 80cd2bc..c6f56b7 100644 --- a/template/python27-flask/Dockerfile +++ b/template/python27-flask/Dockerfile @@ -3,7 +3,7 @@ FROM python:2.7-alpine # Alternatively use ADD https:// (which will not be cached by Docker builder) RUN apk --no-cache add curl \ && echo "Pulling watchdog binary from Github." \ - && curl -sSLf https://github.com/openfaas-incubator/of-watchdog/releases/download/0.2.7/of-watchdog > /usr/bin/fwatchdog \ + && curl -sSLf https://github.com/openfaas-incubator/of-watchdog/releases/download/0.4.0/of-watchdog > /usr/bin/fwatchdog \ && chmod +x /usr/bin/fwatchdog \ && apk del curl --no-cache diff --git a/template/python3-flask-armhf/Dockerfile b/template/python3-flask-armhf/Dockerfile index bb11891..a4a618b 100644 --- a/template/python3-flask-armhf/Dockerfile +++ b/template/python3-flask-armhf/Dockerfile @@ -3,7 +3,7 @@ FROM armhf/python:3.6-alpine # Alternatively use ADD https:// (which will not be cached by Docker builder) RUN apk --no-cache add curl \ && echo "Pulling watchdog binary from Github." \ - && curl -sSLf https://github.com/openfaas-incubator/of-watchdog/releases/download/0.2.7/of-watchdog-armhf > /usr/bin/fwatchdog \ + && curl -sSLf https://github.com/openfaas-incubator/of-watchdog/releases/download/0.4.0/of-watchdog-armhf > /usr/bin/fwatchdog \ && chmod +x /usr/bin/fwatchdog \ && apk del curl --no-cache diff --git a/template/python3-flask/Dockerfile b/template/python3-flask/Dockerfile index 71a073d..bed58c8 100644 --- a/template/python3-flask/Dockerfile +++ b/template/python3-flask/Dockerfile @@ -3,7 +3,7 @@ FROM python:3.7-alpine # Alternatively use ADD https:// (which will not be cached by Docker builder) RUN apk --no-cache add curl \ && echo "Pulling watchdog binary from Github." \ - && curl -sSLf https://github.com/openfaas-incubator/of-watchdog/releases/download/0.2.7/of-watchdog > /usr/bin/fwatchdog \ + && curl -sSLf https://github.com/openfaas-incubator/of-watchdog/releases/download/0.4.0/of-watchdog > /usr/bin/fwatchdog \ && chmod +x /usr/bin/fwatchdog \ && apk del curl --no-cache