发布 2.1 版本

This commit is contained in:
JoeanAmier
2024-06-30 17:37:10 +08:00
parent b87132e364
commit 3d28a6f262
13 changed files with 310 additions and 138 deletions

View File

@@ -1,16 +1,16 @@
FROM python:3.12.4-slim
LABEL name="XHS-Downloader" version="2.1 Beta" authors="JoeanAmier"
LABEL name="XHS-Downloader" version="2.1" authors="JoeanAmier"
COPY locale /locale
COPY source /source
COPY static /static
COPY LICENSE /LICENSE
COPY main.py /main.py
COPY README.md /README.md
COPY README_EN.md /README_EN.md
COPY requirements.txt /requirements.txt
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
EXPOSE 8000
CMD ["python", "main.py"]