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.
hello-algo/Dockerfile

16 lines
316 B

FROM python:3.9.0-alpine
2 years ago
2 years ago
RUN pip install --upgrade pip
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.13
2 years ago
WORKDIR /app
2 years ago
COPY docs /app/build
2 years ago
COPY mkdocs.yml /app/mkdocs.yml
2 years ago
RUN mkdir -p ./build/overrides && mkdocs build
2 years ago
EXPOSE 8000
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]