Chandima Prabhath commited on
Commit
8bf445f
·
1 Parent(s): 89eb363

Update CMD instruction in Dockerfile to run ingestion and query scripts sequentially

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -13,5 +13,4 @@ EXPOSE 8000
13
 
14
  COPY --chown=user . /app
15
  ENV PYTHONPATH=/app
16
- CMD ["python", "scripts/run_ingestion.py"]
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