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.
26 lines
618 B
26 lines
618 B
FROM python:3.10.0-alpine
|
|
|
|
ENV PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
|
|
RUN pip install --upgrade pip
|
|
RUN pip install mkdocs-material==9.5.5 mkdocs-glightbox
|
|
|
|
WORKDIR /hello-algo
|
|
|
|
COPY overrides ./build/overrides
|
|
|
|
COPY docs ./build/docs
|
|
COPY mkdocs.yml mkdocs.yml
|
|
RUN mkdocs build -f mkdocs.yml
|
|
|
|
COPY zh-hant/docs ./build/zh-hant/docs
|
|
COPY zh-hant/mkdocs.yml ./zh-hant/mkdocs.yml
|
|
RUN mkdocs build -f ./zh-hant/mkdocs.yml
|
|
|
|
COPY en/docs ./build/en/docs
|
|
COPY en/mkdocs.yml ./en/mkdocs.yml
|
|
RUN mkdocs build -f ./en/mkdocs.yml
|
|
|
|
WORKDIR /hello-algo/site
|
|
EXPOSE 8000
|
|
CMD ["python", "-m", "http.server", "8000"]
|