File size: 461 Bytes
f924d0d
 
c65d5d2
f924d0d
 
 
 
 
c65d5d2
 
f924d0d
 
 
 
c65d5d2
f924d0d
 
 
c65d5d2
f924d0d
 
c65d5d2
f924d0d
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM python:3.9-slim

# System dependencies including FFmpeg
RUN apt-get update && apt-get install -y \
    ffmpeg \
    libsm6 \
    libxext6 \
    git \
    fontconfig \
    fonts-dejavu \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app

# Requirements installation
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

# Copy application files
COPY . .

# Expose port 7860 for Hugging Face Spaces
EXPOSE 7860

CMD ["python", "app.py"]