Files
konabot/Dockerfile
passthem 6e0082c1c9
Some checks failed
continuous-integration/drone/push Build is failing
大变:移动了很多很多文件并优化构建流程
2025-09-30 02:23:40 +08:00

12 lines
197 B
Docker

FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt --no-deps
COPY bot.py ./
COPY assets ./
COPY scripts ./
COPY konabot ./
CMD [ "python", "bot.py" ]