Dev Goyal commited on
Commit Β·
3d3ba3f
1
Parent(s): c6d67ac
chore: update Dockerfile base image and dependency installation steps
Browse files- 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
|