Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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"]
|