akg-factor-bridge/Dockerfile

11 lines
250 B
Docker
Raw Normal View History

2026-07-24 14:20:54 +08:00
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"]