You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
376 B
17 lines
376 B
FROM python:3.9.0-alpine
|
|
|
|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
|
|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.2
|
|
|
|
WORKDIR /app
|
|
|
|
COPY codes /app/codes
|
|
COPY docs /app/docs
|
|
COPY mkdocs.yml /app/mkdocs.yml
|
|
|
|
RUN mkdir ./docs/overrides && mkdocs build
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]
|