🎉 init(init):初始化仓库

This commit is contained in:
张鑫
2025-12-23 08:38:08 +08:00
parent 36226cc9fe
commit 066fe58f89
34 changed files with 3402 additions and 2 deletions

9
dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.10.5
WORKDIR /app
RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
COPY . .
RUN pip install -r requirements.txt
ENTRYPOINT [ "python", "main.py" ]
EXPOSE 8001