This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
docs/Dockerfile
Philipp Rothmann 86b21ebf4b init
2021-12-13 12:08:49 +01:00

7 lines
249 B
Docker

FROM squidfunk/mkdocs-material:5.5.14
EXPOSE 8000
COPY . /docs
ENTRYPOINT ["/bin/sh"]
RUN apk add --no-cache curl
# RUN pip install mkdocs-awesome-pages-plugin
CMD ["-c", "mkdocs build && python -m http.server --bind 0.0.0.0 --directory site 8000"]