API / Dockerfile
ar08's picture
Update Dockerfile
e0e1291 verified
raw
history blame contribute delete
276 Bytes
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"]