Spaces:
Sleeping
Sleeping
Chandima Prabhath
commited on
Commit
·
8bf445f
1
Parent(s):
89eb363
Update CMD instruction in Dockerfile to run ingestion and query scripts sequentially
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -13,5 +13,4 @@ EXPOSE 8000
|
|
13 |
|
14 |
COPY --chown=user . /app
|
15 |
ENV PYTHONPATH=/app
|
16 |
-
CMD
|
17 |
-
CMD ["python", "scripts/run_query_api.py"]
|
|
|
13 |
|
14 |
COPY --chown=user . /app
|
15 |
ENV PYTHONPATH=/app
|
16 |
+
CMD python scripts/run_ingestion.py && python scripts/run_query_api.py
|
|