Spaces:
Running
Running
File size: 436 Bytes
be3c982 2394ba2 be3c982 2394ba2 be3c982 2394ba2 be3c982 2394ba2 be3c982 2394ba2 be3c982 2394ba2 be3c982 487ef66 2394ba2 |
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.10-slim
# 1. Install system deps
RUN apt-get update && apt-get install -y \
ffmpeg \
libsm6 \
libxext6 \
&& rm -rf /var/lib/apt/lists/*
# 2. Install Python deps
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# 3. Copy app
COPY . .
# 4. Set FFmpeg path
ENV FFMPEG_BINARY=/usr/bin/ffmpeg
CMD ["python", "app.py"] |