FROM python:3.12-slim WORKDIR /app # Install dependencies COPY requirements.txt . RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY scripts/ ./scripts/ COPY server.py . CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8001"]