docs/Dockerfile

8 lines
239 B
Docker
Raw Normal View History

2021-12-13 12:08:49 +01:00
FROM squidfunk/mkdocs-material:5.5.14
EXPOSE 8000
COPY . /docs
ENTRYPOINT ["/bin/sh"]
RUN apk add --no-cache curl
2022-08-02 21:50:47 +02:00
RUN pip install -r requirements.txt
2021-12-13 12:08:49 +01:00
CMD ["-c", "mkdocs build && python -m http.server --bind 0.0.0.0 --directory site 8000"]