Example DIND tests

This commit is contained in:
Alex Ellis
2017-04-13 22:19:35 +01:00
parent 4f1260232f
commit d29e906a2f
4 changed files with 105 additions and 0 deletions

14
contrib/dind/Dockerfile Normal file
View 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"]