Spaces:
Paused
Paused
File size: 287 Bytes
9cc7ecf 6ccea25 ddc3ff4 9cc7ecf ddc3ff4 6ccea25 9cc7ecf ddc3ff4 6ccea25 ddc3ff4 9cc7ecf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM nvidia/cuda:12.3.2-cudnn9-runtime-ubuntu22.04
WORKDIR /app
RUN apt-get update && \
apt-get install -y python3 python3-pip ffmpeg
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
ENV GRADIO_SERVER_NAME=0.0.0.0
EXPOSE 7860
CMD ["python3","run.py"] |