Spaces:
Running
Running
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 --upgrade pip | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 7860 | |
# Use gunicorn to run the app | |
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"] | |