Files
faas/sample-functions/catservice/Dockerfile
2017-01-03 23:31:55 +00:00

10 lines
130 B
Docker

FROM alpine:latest
ENTRYPOINT []
COPY ./fwatchdog /usr/bin/fwatchdog
ENV fprocess "cat"
EXPOSE 8080
CMD ["/usr/bin/fwatchdog"]