Update nodeinfo/alpinefunction to latest mulit-stage

Signed-off-by: Alex Ellis <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis
2019-06-25 21:18:43 +01:00
parent 74ef6edf08
commit 6799f61f12
6 changed files with 39 additions and 28 deletions

View File

@ -1,13 +1,16 @@
FROM alpine:3.8
FROM openfaas/classic-watchdog:0.14.4 as watchdog
FROM alpine:3.9
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
RUN chmod +x /usr/bin/fwatchdog
RUN apk --update add nodejs nodejs-npm
RUN apk --no-cache add curl \
&& curl -sL https://github.com/openfaas/faas/releases/download/0.13.0/fwatchdog-arm64 > /usr/bin/fwatchdog \
&& chmod +x /usr/bin/fwatchdog
COPY package.json .
COPY main.js .
RUN npm i
ENV fprocess="node main.js"
CMD ["fwatchdog"]