mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-17 06:00:58 +00:00
Update Dockerfile
This commit is contained in:
+3
-4
@@ -1,17 +1,16 @@
|
|||||||
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 && pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs mkdocs-material
|
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
|
WORKDIR /app
|
||||||
|
|
||||||
COPY codes /app/codes
|
COPY codes /app/codes
|
||||||
|
|
||||||
COPY docs /app/docs
|
COPY docs /app/docs
|
||||||
|
|
||||||
COPY mkdocs.yml /app/mkdocs.yml
|
COPY mkdocs.yml /app/mkdocs.yml
|
||||||
|
|
||||||
RUN mkdir ./docs/overrides && mkdocs build
|
RUN mkdir ./docs/overrides && mkdocs build
|
||||||
|
|
||||||
EXPOSE 8000
|
EXPOSE 8000
|
||||||
|
|
||||||
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]
|
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]
|
||||||
|
|||||||
Reference in New Issue
Block a user