docs/Dockerfile
Philipp Rothmann a74aa9cd42
All checks were successful
continuous-integration/drone/push Build is passing
update pages
2022-08-02 21:50:47 +02:00

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