Spaces:
Paused
Paused
Update Dockerfile to expose port 7865 for Uvicorn server
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -9,6 +9,6 @@ COPY main.py .
|
|
| 9 |
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
|
| 12 |
-
EXPOSE
|
| 13 |
|
| 14 |
-
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 9 |
|
| 10 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 11 |
|
| 12 |
+
EXPOSE 7865
|
| 13 |
|
| 14 |
+
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7865"]
|