Changed port
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -27,6 +27,6 @@ ENV PATH="/app/.venv/bin:/root/.local/bin:/root/.uv/venv/bin:${PATH}"
|
|
27 |
# Set up frontend
|
28 |
COPY --from=frontend-builder /app/frontend/build /app/static
|
29 |
|
30 |
-
EXPOSE
|
31 |
|
32 |
-
CMD ["uvicorn", "backend.app.main:app", "--host", "0.0.0.0", "--port", "
|
|
|
27 |
# Set up frontend
|
28 |
COPY --from=frontend-builder /app/frontend/build /app/static
|
29 |
|
30 |
+
EXPOSE 7860
|
31 |
|
32 |
+
CMD ["uvicorn", "backend.app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|