Files
jwc-monitor/Dockerfile
2026-03-24 22:30:11 +08:00

13 lines
254 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# 配置文件不打包,由 volumes 挂载
VOLUME ["/app/config.yaml", "/app/last_notifications.json"]
CMD ["python", "main.py"]