Fix port to 3000.

This commit is contained in:
Gregor Trefalt 2025-10-28 15:05:37 +01:00
parent 7d6aa4df6d
commit cc2f8b965b
1 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@ COPY . .
ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
EXPOSE 8501 EXPOSE 3000
ENTRYPOINT ["uv", "run", "streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] ENTRYPOINT ["uv", "run", "streamlit", "run", "app.py", "--server.port=3000", "--server.address=0.0.0.0"]