updatedDocker
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -7,8 +7,8 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 7 |
|
| 8 |
COPY app.py fiscal.py auth.py plaid_client.py rebuild_index.py ./
|
| 9 |
COPY docs/ ./docs/
|
|
|
|
| 10 |
|
| 11 |
EXPOSE 7860
|
| 12 |
|
| 13 |
-
# Rebuild ChromaDB then start the server
|
| 14 |
CMD ["sh", "-c", "python rebuild_index.py && uvicorn app:app --host 0.0.0.0 --port 7860"]
|
|
|
|
| 7 |
|
| 8 |
COPY app.py fiscal.py auth.py plaid_client.py rebuild_index.py ./
|
| 9 |
COPY docs/ ./docs/
|
| 10 |
+
COPY fixtures/ ./fixtures/
|
| 11 |
|
| 12 |
EXPOSE 7860
|
| 13 |
|
|
|
|
| 14 |
CMD ["sh", "-c", "python rebuild_index.py && uvicorn app:app --host 0.0.0.0 --port 7860"]
|