Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -12,7 +12,7 @@ RUN apt-get update \
|
|
12 |
WORKDIR backend/
|
13 |
|
14 |
# Install requirements.txt
|
15 |
-
RUN pip install --no-cache-dir --upgrade -r
|
16 |
|
17 |
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
18 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
12 |
WORKDIR backend/
|
13 |
|
14 |
# Install requirements.txt
|
15 |
+
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
|
16 |
|
17 |
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
18 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|