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 # Expose port EXPOSE 7860 # Run the application CMD ["python", "app.py"]