mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 09:16:48 +00:00
16 lines
291 B
Docker
16 lines
291 B
Docker
FROM armhf/alpine:3.5
|
|
|
|
ADD https://github.com/alexellis/faas/releases/download/v0.3-alpha/fwatchdog-armhf /usr/bin/fwatchdog
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
|
|
WORKDIR /root/
|
|
|
|
EXPOSE 8080
|
|
ENV http_proxy ""
|
|
ENV https_proxy ""
|
|
|
|
COPY app .
|
|
|
|
ENV fprocess="/root/app"
|
|
CMD ["fwatchdog"]
|