Bootstrap a new docs for coop cloud

This commit is contained in:
2020-10-23 15:18:08 +02:00
commit 5876d8e487
8 changed files with 782 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM squidfunk/mkdocs-material:5.5.14
EXPOSE 8000
COPY . /docs
ENTRYPOINT ["/bin/sh"]
RUN apk add --no-cache curl
CMD ["-c", "mkdocs build && python -m http.server --bind 0.0.0.0 --directory site 8000"]