FROM python:3.11-slim

WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

# 默认空跑连通性自检；生产由 cron / 平台 XXL-JOB / docker exec 触发 build。
CMD ["python", "run.py", "views"]
