Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -27,7 +27,7 @@ RUN pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt
|
|
| 27 |
COPY . /app/
|
| 28 |
|
| 29 |
# Expose port
|
| 30 |
-
EXPOSE
|
| 31 |
|
| 32 |
# Run the FastAPI app with Uvicorn
|
| 33 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 27 |
COPY . /app/
|
| 28 |
|
| 29 |
# Expose port
|
| 30 |
+
EXPOSE 7860
|
| 31 |
|
| 32 |
# Run the FastAPI app with Uvicorn
|
| 33 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|