mirror of
https://github.com/openfaas/faas.git
synced 2025-06-16 04:06:47 +00:00
Note, not all `alexellis/github` references should be changed, there are a number of repos which are not part of the openfaas org, this commit excludes those. Signed-off-by: John McCabe <john@johnmccabe.net>
15 lines
216 B
Docker
15 lines
216 B
Docker
FROM docker:dind
|
|
WORKDIR /root/
|
|
RUN apk --no-cache add git && \
|
|
git clone https://github.com/openfaas/faas
|
|
WORKDIR /root/faas/
|
|
|
|
|
|
EXPOSE 8080
|
|
EXPOSE 9090
|
|
|
|
COPY entry.sh .
|
|
RUN chmod +x ./entry.sh
|
|
|
|
CMD ["./entry.sh"]
|