docs.coopcloud.tech/Dockerfile

12 lines
208 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
CMD ["-c", "mkdocs build && python -m http.server --bind 0.0.0.0 --directory site 8000"]