File size: 276 Bytes
9f8be3d c3adbf1 9f8be3d c3adbf1 9f8be3d c3adbf1 9f8be3d 9295ca5 9f8be3d c3adbf1 9f8be3d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.10
RUN apt-get update && apt-get install -y \
ffmpeg \
libsm6 \
libxext6
WORKDIR /app
COPY . /app/
RUN pip install --upgrade pip
RUN pip install torch
RUN pip install -r requirements.txt
CMD ["python3", "app.py", "-H", "0.0.0.0", "-p", "7860"]
|