初次提交请多关照

This commit is contained in:
2025-09-28 00:15:16 +08:00
commit 3d0c77d1e6
14 changed files with 3183 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt --no-deps
COPY . .
CMD [ "python", "bot.py" ]