mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 00:36:46 +00:00
22 lines
382 B
Docker
22 lines
382 B
Docker
FROM ghcr.io/openfaas/classic-watchdog:0.2.0 as watchdog
|
|
|
|
FROM alpine:3.16.0 as ship
|
|
RUN apk --update add nodejs npm
|
|
|
|
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
WORKDIR /application/
|
|
|
|
COPY package.json .
|
|
COPY handler.js .
|
|
COPY parser.js .
|
|
COPY sample.json .
|
|
|
|
RUN npm i
|
|
ENV fprocess="node handler.js"
|
|
|
|
USER 1000
|
|
|
|
CMD ["fwatchdog"]
|