FROM python:3.10-slim # Set working directory WORKDIR /app # Copy application files COPY . /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ libsndfile1 \ && rm -rf /var/lib/apt/lists/* # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Run the application CMD ["python", "app:app", "--host", "0.0.0.0", "--port", "7860"]