FROM python:3.11-slim WORKDIR /app # Install system dependencies for yt-dlp and playwright RUN apt-get update && apt-get install -y --no-install-recommends \ ffmpeg \ curl \ libnss3 \ libnspr4 \ libatk1.0-0 \ libatk-bridge2.0-0 \ libcups2 \ libdrm2 \ libxkbcommon0 \ libxcomposite1 \ libxdamage1 \ libxrandr2 \ libgbm1 \ libasound2 \ && rm -rf /var/lib/apt/lists/* # Install Python dependencies COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Install Playwright browsers RUN playwright install chromium RUN playwright install-deps chromium # Copy application code COPY . . # Create data directory RUN mkdir -p /app/data # Expose port EXPOSE 8000 # Run the application CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]