FROM python:3.11-slim WORKDIR /app # Install minimal system dependencies RUN apt-get update && \ apt-get install -y --no-install-recommends \ curl \ libcurl4 \ && rm -rf /var/lib/apt/lists/* # Install Python packages RUN pip install --no-cache-dir \ fastapi \ uvicorn \ openai \ requests \ google-genai \ firebase-admin # Copy app COPY app.py . # Run server CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]