Change panel port from 8000 to 4000

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-25 21:13:26 +03:00
co-authored by Cursor
parent 85a2800870
commit 35d3a3b888
3 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ COPY scripts ./scripts
RUN sed -i 's/\r$//' /app/scripts/entrypoint.sh && chmod +x /app/scripts/entrypoint.sh
EXPOSE 8000
EXPOSE 4000
ENTRYPOINT ["/app/scripts/entrypoint.sh"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "4000"]