faceswap_tool / Dockerfile
DodoPele's picture
Update Dockerfile
633cb62 verified
raw
history blame contribute delete
358 Bytes
FROM python:3.10
# working directory
WORKDIR /app
# copy files
COPY . .
# system packages
RUN apt-get update && apt-get install -y ffmpeg
# upgrade pip
RUN pip install --upgrade pip setuptools wheel
# install python deps
RUN pip install --no-cache-dir -r requirements.txt
# launch app
ENV GRADIO_SERVER_NAME=0.0.0.0
EXPOSE 7860
CMD ["python", "run.py"]