Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -33,7 +33,7 @@ COPY requirements.txt /home/user/app/requirements.txt
|
|
| 33 |
RUN pip install --no-cache-dir -r /home/user/app/requirements.txt
|
| 34 |
|
| 35 |
# Expose the correct port
|
| 36 |
-
EXPOSE
|
| 37 |
|
| 38 |
-
#
|
| 39 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 33 |
RUN pip install --no-cache-dir -r /home/user/app/requirements.txt
|
| 34 |
|
| 35 |
# Expose the correct port
|
| 36 |
+
EXPOSE 7860
|
| 37 |
|
| 38 |
+
# Start the FastAPI app
|
| 39 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|