Files

21 lines
318 B
Docker
Raw Permalink Normal View History

2026-02-03 00:54:48 +08:00
FROM python:3.11-slim
# 設置工作目錄
WORKDIR /app
# 複製依賴文件
COPY requirements.txt .
# 安裝依賴
RUN pip install --no-cache-dir -r requirements.txt
# 複製源代碼
COPY src/ ./src/
# 設置環境變量
ENV PYTHONUNBUFFERED=1
ENV PYTHONPATH=/app
# 運行 Bot
CMD ["python", "-m", "src.main"]