Files
docs.coopcloud.tech/Dockerfile

14 lines
253 B
Docker
Raw Normal View History

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