From 1dcc887554cffc7b4814aedcf1625b61b511e9d7 Mon Sep 17 00:00:00 2001 From: "Alex Ellis (VMware)" <alexellis2@gmail.com> Date: Tue, 9 Oct 2018 16:55:36 +0100 Subject: [PATCH] Bump figlet version Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com> --- sample-functions/figlet/Dockerfile | 5 +++-- sample-functions/stack.yml | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/sample-functions/figlet/Dockerfile b/sample-functions/figlet/Dockerfile index dfe73093..9b1937c2 100644 --- a/sample-functions/figlet/Dockerfile +++ b/sample-functions/figlet/Dockerfile @@ -1,7 +1,7 @@ -FROM alpine:3.7 +FROM alpine:3.8 RUN apk --no-cache add curl \ - && curl -sL https://github.com/openfaas/faas/releases/download/0.9.4/fwatchdog > /usr/bin/fwatchdog \ + && curl -sL https://github.com/openfaas/faas/releases/download/0.9.6/fwatchdog > /usr/bin/fwatchdog \ && chmod +x /usr/bin/fwatchdog RUN apk add --no-cache figlet @@ -11,3 +11,4 @@ ENV fprocess="figlet" HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1 CMD ["fwatchdog"] + diff --git a/sample-functions/stack.yml b/sample-functions/stack.yml index d44aa25e..7f524583 100644 --- a/sample-functions/stack.yml +++ b/sample-functions/stack.yml @@ -6,6 +6,10 @@ functions: lang: dockerfile handler: ./AlpineFunction image: functions/alpine:latest + figlet: + lang: dockerfile + handler: ./figlet + image: functions/figlet:0.9.6 apikey-secret: lang: go handler: ./apikey-secret -- GitLab