# Stage 1: Build stage FROM python:3.10-slim AS build WORKDIR /app RUN apt-get update && apt-get install -y \ build-essential \ libglib2.0-0 \ libsm6 \ libxext6 \ libxrender-dev \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . RUN pip install --no-cache-dir --prefix=/install -r requirements.txt COPY . . # Stage 2: Production stage FROM python:3.10-slim WORKDIR /app # Copy installed packages from build stage COPY --from=build /install /usr/local COPY . . CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]