FROM localhost:8082/python:3.12-slim WORKDIR /app COPY pyproject.toml uv.lock ./ RUN pip install --index-url http://localhost:8081/repository/pypi-group/simple --trusted-host localhost uv && \ uv sync --frozen --no-dev --index-url http://localhost:8081/repository/pypi-group/simple COPY app/ app/ CMD ["uv", "run", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8900"]