Amna2024 commited on
Commit
a6353f0
·
verified ·
1 Parent(s): 5435bdd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -11,7 +11,7 @@ COPY . /app/
11
  RUN ls -la /app && ls -la /app/RAG
12
 
13
  # Install requirements.txt
14
- RUN pip install --no-cache-dir --upgrade -r /requirements.txt
15
 
16
  # Start the FastAPI app on port 7860, the default port expected by Spaces
17
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
11
  RUN ls -la /app && ls -la /app/RAG
12
 
13
  # Install requirements.txt
14
+ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
15
 
16
  # Start the FastAPI app on port 7860, the default port expected by Spaces
17
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]