Update uvicorn command to use port 8003

Change the default port for uvicorn from 8000 to 8003.
This commit is contained in:
Yann Ahlgrim
2025-10-23 15:15:40 +02:00
committed by GitHub
parent 843a11d08d
commit 28361c70fc
+1 -1
View File
@@ -12,4 +12,4 @@ RUN python -m pip install --upgrade pip setuptools wheel && \
pip install --no-cache-dir -r requirements.txt pip install --no-cache-dir -r requirements.txt
COPY server.py ./ COPY server.py ./
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"] CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8003"]