docs.coopcloud.tech/Dockerfile

14 lines
253 B
Docker
Raw Normal View History

2020-10-23 13:18:08 +00:00
FROM squidfunk/mkdocs-material:5.5.14
EXPOSE 8000
COPY . /docs
ENTRYPOINT ["/bin/sh"]
RUN apk add --no-cache curl
2021-02-18 09:45:36 +00:00
RUN pip install mkdocs-awesome-pages-plugin
2020-10-23 13:18:08 +00:00
CMD ["-c", "mkdocs build && python -m http.server --bind 0.0.0.0 --directory site 8000"]