mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
There's a new release which appears to have no apparent down- sides or breakages. https://www.alpinelinux.org/posts/Alpine-3.11.2-released.html Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
17 lines
219 B
Docker
17 lines
219 B
Docker
FROM functions/alpine:latest
|
|
|
|
USER root
|
|
|
|
RUN apk --update add nodejs nodejs-npm
|
|
|
|
COPY package.json .
|
|
COPY handler.js .
|
|
COPY sample.json .
|
|
|
|
RUN npm i
|
|
|
|
USER 1000
|
|
|
|
ENV fprocess="node handler.js"
|
|
CMD ["fwatchdog"]
|