Igbalode/mp4-mp3
0
1FROM python:3.11-slim2 3# 1. Install system dependencies (ffmpeg is the big one)4RUN apt-get update && \5 apt-get install -y --no-install-recommends \6 ffmpeg \7 curl \8 && rm -rf /var/lib/apt/lists/*9 10# 2. Copy & install Python deps11WORKDIR /code12COPY requirements.txt .13RUN pip install --no-cache-dir -r requirements.txt14 15# 3. Copy application16COPY . .17 18# 4. Hugging Face Spaces expect port 786019EXPOSE 786020CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]21 