Spaces:
Paused
Paused
Commit
·
e15bda4
1
Parent(s):
a2b3d9e
fixed False
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -26,7 +26,7 @@ RUN pip install --no-cache-dir --upgrade pip && \
|
|
| 26 |
COPY --chown=user . $HOME/app
|
| 27 |
|
| 28 |
# Make sure port matches the one in your code
|
| 29 |
-
EXPOSE
|
| 30 |
|
| 31 |
# Use uvicorn directly with specific settings
|
| 32 |
-
CMD ["uvicorn", "main.app:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 26 |
COPY --chown=user . $HOME/app
|
| 27 |
|
| 28 |
# Make sure port matches the one in your code
|
| 29 |
+
EXPOSE 7680
|
| 30 |
|
| 31 |
# Use uvicorn directly with specific settings
|
| 32 |
+
CMD ["uvicorn", "main.app:app", "--host", "0.0.0.0", "--port", "7680", "--workers", "1", "--reload", "False"]
|