From 774c27c47ed88fca717955fad936ed9a0a53dcf7 Mon Sep 17 00:00:00 2001 From: krahets Date: Mon, 25 Dec 2023 13:23:32 +0800 Subject: [PATCH] A bug fix --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 164051206..89e35a391 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -FROM python:3.9.0-alpine +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.4.1 mkdocs-glightbox +RUN pip install mkdocs-material==9.5.2 mkdocs-glightbox WORKDIR /hello-algo @@ -15,6 +15,6 @@ COPY mkdocs-en.yml ./mkdocs-en.yml RUN mkdocs build -f mkdocs.yml RUN mkdocs build -f mkdocs-en.yml -WORKDIR /app/site +WORKDIR /hello-algo/site EXPOSE 8000 CMD ["python", "-m", "http.server", "8000"]