Spaces:
Running
Running
File size: 357 Bytes
aa027fd 249f6c1 2680218 0f8f338 aa027fd 2680218 249f6c1 aa027fd 2680218 249f6c1 2680218 aa027fd 249f6c1 aa027fd 2680218 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | FROM python:3.11-slim
WORKDIR /app
# Install FFmpeg
RUN apt-get update && apt-get install -y \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app
COPY app.py .
# Expose port
EXPOSE 7860
# Run
CMD ["python", "app.py"]
|