Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -17,7 +17,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
17 |
COPY . .
|
18 |
|
19 |
# Expose port
|
20 |
-
EXPOSE
|
21 |
|
22 |
# Run the FastAPI app
|
23 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
17 |
COPY . .
|
18 |
|
19 |
# Expose port
|
20 |
+
EXPOSE 7860
|
21 |
|
22 |
# Run the FastAPI app
|
23 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|