mirror of
https://github.com/openfaas/faas.git
synced 2025-06-24 07:43:25 +00:00
Example DIND tests
This commit is contained in:
14
contrib/dind/Dockerfile
Normal file
14
contrib/dind/Dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
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"]
|
Reference in New Issue
Block a user