app / Dockerfile
Carlos012's picture
Update (Code): Update code
be28754
Raw
History Blame Contribute Delete
301 Bytes
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"]