初步完成项目,可以监控给出入场信号

This commit is contained in:
2026-07-14 00:37:22 +08:00
commit a1963e58ed
31 changed files with 3566 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
COPY pyproject.toml .
RUN pip install --no-cache-dir .
COPY src/ src/
RUN mkdir -p data reports
CMD ["python", "-m", "src.main", "run"]