annakrumina08/transcript-ai-diarization
0
1FROM python:3.11-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6 ffmpeg \7 git \8 build-essential \9 && rm -rf /var/lib/apt/lists/*10 11COPY requirements.txt .12 13RUN pip install --no-cache-dir -r requirements.txt14 15COPY . .16 17EXPOSE 786018 19CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]20 