File size: 576 Bytes
9b9c8a6 f5aefe7 9b9c8a6 f5aefe7 9b9c8a6 f5aefe7 9b9c8a6 dd360ab 9b9c8a6 92eca61 | 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 | # Base image
# Base image
FROM python:3.11-slim
# Avoid interactive prompts
ENV DEBIAN_FRONTEND=noninteractive
# Install FFmpeg + OpenCV dependencies
RUN apt-get update && apt-get install -y \
ffmpeg \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy files
COPY requirements.txt .
COPY app.py .
# Install Python dependencies
RUN pip install --no-cache-dir python-multipart -r requirements.txt
# Expose port
EXPOSE 7860
# Run the FastAPI app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |