mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 09:16:48 +00:00
11 lines
217 B
Docker
11 lines
217 B
Docker
FROM alpine:latest
|
|
ENTRYPOINT []
|
|
|
|
ADD https://github.com/alexellis/faas/releases/download/v0.5-alpha/fwatchdog /usr/bin
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
ENV fprocess "/bin/cat"
|
|
|
|
EXPOSE 8080
|
|
CMD ["/usr/bin/fwatchdog"]
|