Spaces:
Sleeping
Sleeping
FROM python:3.10 | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN apt-get update && apt-get install -y \ | |
libgl1 \ | |
libglib2.0-0 \ | |
ffmpeg \ | |
&& rm -rf /var/lib/apt/lists/* | |
WORKDIR /app | |
COPY . /app | |
RUN pip install --upgrade pip | |
RUN pip install -r requirements.txt | |
EXPOSE 7860 | |
CMD ["python", "app.py"] | |