FROM python:3.11-slim WORKDIR /app RUN apt-get update && apt-get install -y ffmpeg libsndfile1 git git-lfs && rm -rf /var/lib/apt/lists/* RUN git lfs install COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . RUN python -c "\ from huggingface_hub import snapshot_download; \ snapshot_download('Isaacyn/whisper-small-id', \ local_dir='/app/models/whisper', \ ignore_patterns=['*.safetensors', '*.bin', 'model.safetensors']) \ " EXPOSE 7860 CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]