Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -61,7 +61,6 @@ ENV STATIC_DIR=/app/static \
|
|
| 61 |
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
|
| 62 |
CMD curl -f http://localhost:8000/health || exit 1
|
| 63 |
|
| 64 |
-
EXPOSE 8000
|
| 65 |
|
| 66 |
-
|
| 67 |
-
ENTRYPOINT ["python3", "-m", "uvicorn", "app.main:app", "--app-dir", "/app/backend", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 61 |
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
|
| 62 |
CMD curl -f http://localhost:8000/health || exit 1
|
| 63 |
|
|
|
|
| 64 |
|
| 65 |
+
EXPOSE 7860
|
| 66 |
+
ENTRYPOINT ["python3", "-m", "uvicorn", "app.main:app", "--app-dir", "/app/backend", "--host", "0.0.0.0", "--port", "7860"]
|