init
This commit is contained in:
commit
86b21ebf4b
15 changed files with 435 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
FROM squidfunk/mkdocs-material:5.5.14
|
||||
EXPOSE 8000
|
||||
COPY . /docs
|
||||
ENTRYPOINT ["/bin/sh"]
|
||||
RUN apk add --no-cache curl
|
||||
# RUN pip install mkdocs-awesome-pages-plugin
|
||||
CMD ["-c", "mkdocs build && python -m http.server --bind 0.0.0.0 --directory site 8000"]
|
||||
Reference in a new issue