faceswap_tool_v2 / Dockerfile
DodoPele's picture
Update Dockerfile
9cc7ecf verified
raw
history blame contribute delete
287 Bytes
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"]