Spaces:
Running
Running
File size: 323 Bytes
9baebd6 31da93c |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.11.12-slim
# System dependencies (optional, for opencv and others)
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6
# Install required Python packages
COPY requirements.txt .
RUN pip install --upgrade pip && pip install -r requirements.txt
# Run your app
CMD ["python", "app.py"]
|