/
githubmirror
/
faceswap
Обзор
Документация
Войти
/
githubmirror
/
faceswap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.3.0
Dockerfile.cpu
19 строк
556 B
torzdf
Rebase code (#1326)
27 июн 2023, 13:27
Не верифицирован
27 июн 2023, 13:27
6a3b674
Код
Авторство
О чём код?
FROM ubuntu:22.04 # To disable tzdata and others from asking for input ENV DEBIAN_FRONTEND noninteractive ENV FACESWAP_BACKEND cpu RUN apt-get update -qq -y RUN apt-get upgrade -y RUN apt-get install -y libgl1 libglib2.0-0 python3 python3-pip python3-tk git RUN ln -s $(which python3) /usr/local/bin/python RUN git clone --depth 1 --no-single-branch https://github.com/deepfakes/faceswap.git WORKDIR "/faceswap" RUN python -m pip install --upgrade pip RUN python -m pip --no-cache-dir install -r ./requirements/requirements_cpu.txt CMD ["/bin/bash"]