Spaces:
Running on T4
Running on T4
File size: 330 Bytes
b1d1ff4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | FROM python:3.12-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends ffmpeg libglib2.0-0 && \
rm -rf /var/lib/apt/lists/*
COPY requirements-mac.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements-mac.txt
WORKDIR /workspace
CMD ["python", "app.py"]
|