Fix Dockerfile
This commit is contained in:
parent
33c797efeb
commit
7b41e6c2f0
@ -1,15 +1,14 @@
|
|||||||
FROM python:3.9.0-alpine
|
FROM python:3.9.0-alpine
|
||||||
|
|
||||||
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
|
RUN pip install --upgrade pip
|
||||||
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.8
|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.13
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY codes /app/codes
|
COPY docs /app/build
|
||||||
COPY docs /app/docs
|
|
||||||
COPY mkdocs.yml /app/mkdocs.yml
|
COPY mkdocs.yml /app/mkdocs.yml
|
||||||
|
|
||||||
RUN mkdir ./docs/overrides && mkdocs build
|
RUN mkdir -p ./build/overrides && mkdocs build
|
||||||
|
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user