From 2759aaf849b79c39d420042a1c3d7232e05ac5f2 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 22 Jan 2017 22:18:42 +0000 Subject: [PATCH] Remove -l switch from wc --- sample-functions/WordCountFunction/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sample-functions/WordCountFunction/Dockerfile b/sample-functions/WordCountFunction/Dockerfile index 0a579714..34f5055f 100644 --- a/sample-functions/WordCountFunction/Dockerfile +++ b/sample-functions/WordCountFunction/Dockerfile @@ -1,7 +1,5 @@ -FROM alexellis2/faas-alpinefunction - -COPY fwatchdog /usr/bin/ +FROM alexellis2/faas-alpinefunction:latest # Populate example here -ENV fprocess="wc -l" +ENV fprocess="wc" CMD ["fwatchdog"]