Files
nas-tools/info-engine/Dockerfile
T
Gan, Jimmy a91a1132c9
Deploy Dashboard (Dev) / deploy-dev (push) Successful in 2m10s
feat: add info engine MVP pipeline and dashboard page
Introduce a standalone scheduled info-engine worker with SQLite persistence and expose read-only dashboard APIs/UI so curated intelligence items can be collected and viewed with minimal architecture changes.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-02 23:35:10 +08:00

7 lines
151 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "-u", "main.py"]