mirror of
https://github.com/openfaas/faas.git
synced 2025-06-10 17:26:47 +00:00
15 lines
217 B
Docker
15 lines
217 B
Docker
FROM docker:dind
|
|
WORKDIR /root/
|
|
RUN apk --no-cache add git && \
|
|
git clone https://github.com/alexellis/faas
|
|
WORKDIR /root/faas/
|
|
|
|
|
|
EXPOSE 8080
|
|
EXPOSE 9090
|
|
|
|
COPY entry.sh .
|
|
RUN chmod +x ./entry.sh
|
|
|
|
CMD ["./entry.sh"]
|