docs.coopcloud.tech/Dockerfile
cellarspoon 44a923afec
All checks were successful
continuous-integration/drone/push Build is passing
inline that
2022-01-21 10:55:01 +01:00

14 lines
279 B
Docker

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