FROM python:3.10-slim WORKDIR /app # Installazione delle dipendenze di sistema RUN apt-get update && apt-get install -y \ ffmpeg \ espeak \ libespeak1 \ libasound2 \ git \ && apt-get clean # Installazione delle dipendenze Python COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copia del codice COPY . . EXPOSE 8000 CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]