fix: update UVICORN_PORT and UVICORN_WORKERS in Dockerfile for consistency
Some checks failed
CI / test (pull_request) Failing after 2m39s

This commit is contained in:
2025-11-02 12:23:26 +01:00
parent 6eef8424b7
commit efee50fdc7

View File

@@ -2,8 +2,6 @@
ARG PYTHON_VERSION=3.11-slim ARG PYTHON_VERSION=3.11-slim
ARG APT_CACHE_URL=http://192.168.88.14:3142 ARG APT_CACHE_URL=http://192.168.88.14:3142
ARG UVICORN_WORKERS=4
ARG UVICORN_PORT=8003
FROM python:${PYTHON_VERSION} AS builder FROM python:${PYTHON_VERSION} AS builder
ARG APT_CACHE_URL ARG APT_CACHE_URL
@@ -108,6 +106,6 @@ RUN chown -R appuser:app /app
USER appuser USER appuser
EXPOSE 8000 EXPOSE 8003
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "${UVICORN_PORT}", "--workers", "${UVICORN_WORKERS}"] CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8003", "--workers", "4"]