Spaces:
Runtime error
Runtime error
File size: 716 Bytes
45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 45a1c37 5179c77 |
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 27 28 29 30 31 32 33 34 35 36 37 |
FROM python:3.9
# Set working directory
WORKDIR /app
# Install system dependencies (updated for newer Debian)
RUN apt-get update && apt-get install -y \
libglib2.0-0 \
libsm6 \
libxext6 \
libxrender1 \
libgomp1 \
libgthread-2.0-0 \
libgl1 \
libglvnd0 \
libglx0 \
libegl1 \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements first (for better caching)
COPY backend/requirements.txt requirements.txt
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy all application code
COPY . /app
# Create necessary directories
RUN mkdir -p uploads outputs
# Expose port
EXPOSE 7860
# Run the application
CMD ["python", "app.py"] |