File size: 301 Bytes
be28754 08bea24 738127a 08bea24 be28754 08bea24 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get install -y --no-install-recommends \
libglib2.0-0 ffmpeg \
&& pip install --no-cache-dir -r requirements.txt \
&& rm -rf /var/lib/apt/lists/*
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"] |