faceswap/Dockerfile.cpu
Timothy Delter a90eff901d Fix for Effmpeg not working when using Faceswap with Docker (#732)
* Edited Dockerfiles to include ffmpeg installation for Effmpeg to work

* Edited incorrect command to run Dockerized Faceswap GUI in INSTALL.md
2019-05-18 11:21:02 +01:00

15 lines
423 B
Docker
Executable File

FROM tensorflow/tensorflow:1.12.0-py3
RUN add-apt-repository -y ppa:jonathonf/ffmpeg-4 \
&& apt-get update -qq -y \
&& apt-get install -y libsm6 libxrender1 libxext-dev python3-tk ffmpeg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /opt/
RUN pip3 install --upgrade pip
RUN pip3 --no-cache-dir install -r /opt/requirements.txt && rm /opt/requirements.txt
WORKDIR "/srv"
CMD ["/bin/bash"]