first commit

This commit is contained in:
2026-07-12 09:18:28 +08:00
commit cc79650769
63 changed files with 10726 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
FROM python:3.12-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY pyproject.toml .
RUN pip install --no-cache-dir .
# Copy application code
COPY src/ src/
# Create data directories
RUN mkdir -p data reports daily_briefings
# Default command
CMD ["python", "-m", "src.main", "run"]