mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 17:26:47 +00:00
10 lines
130 B
Docker
10 lines
130 B
Docker
FROM alpine:latest
|
|
ENTRYPOINT []
|
|
|
|
COPY ./fwatchdog /usr/bin/fwatchdog
|
|
ENV fprocess "cat"
|
|
|
|
|
|
EXPOSE 8080
|
|
CMD ["/usr/bin/fwatchdog"]
|