Dev Goyal commited on
Commit
3d3ba3f
Β·
1 Parent(s): c6d67ac

chore: update Dockerfile base image and dependency installation steps

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -20,6 +20,9 @@ RUN pip install --no-cache-dir -r requirements.txt
20
  # ── App source ───────────────────────────────────────────────────────────────
21
  COPY . .
22
 
 
 
 
23
  # ── Pre-seed ChromaDB at build time ─────────────────────────────────────────
24
  # Ingest SEC 10-K filings for demo tickers
25
  RUN python scripts/ingest.py --tickers AAPL MSFT TSLA GOOGL NVDA
 
20
  # ── App source ───────────────────────────────────────────────────────────────
21
  COPY . .
22
 
23
+ # ── Ensure project root is on PYTHONPATH for all scripts ─────────────────────
24
+ ENV PYTHONPATH=/app
25
+
26
  # ── Pre-seed ChromaDB at build time ─────────────────────────────────────────
27
  # Ingest SEC 10-K filings for demo tickers
28
  RUN python scripts/ingest.py --tickers AAPL MSFT TSLA GOOGL NVDA