axjh03 commited on
Commit
d3e5c05
1 Parent(s): a933b7b
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -32,4 +32,7 @@ RUN mkdir -p /app/.files && \
32
  COPY --chown=user . /app
33
 
34
  # Run the application
35
- CMD ["/bin/bash", "-c", "sudo source env/bin/activate && uvicorn app:app --host 0.0.0.0 --port 7680"]
 
 
 
 
32
  COPY --chown=user . /app
33
 
34
  # Run the application
35
+ CMD /bin/bash -c "source env/bin/activate && \
36
+ python3 downloadLLM.py && \
37
+ python3 ingest.py && \
38
+ chainlit run main.py --host 0.0.0.0 --port 7680"