From 98e01f467200eac63e9a650032aad1e2cf495bc0 Mon Sep 17 00:00:00 2001 From: kev Date: Mon, 14 Feb 2022 17:57:49 +0800 Subject: [PATCH] update deface --- deface/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deface/Dockerfile b/deface/Dockerfile index 9560c99..6b71429 100644 --- a/deface/Dockerfile +++ b/deface/Dockerfile @@ -7,10 +7,10 @@ MAINTAINER EasyPi Software Foundation RUN set -xe \ && apt update \ - && apt install -y curl ffmpeg git libsm6 libxext6 python3 python3-distutils \ - && curl https://bootstrap.pypa.io/get-pip.py | python3 \ - && pip3 install --no-cache-dir git+https://github.com/ORB-HD/deface \ - && apt remove -y curl git \ + && apt install -y curl ffmpeg libsm6 libxext6 python3 python3-distutils \ + && curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \ + && pip3 install --no-cache-dir https://github.com/ORB-HD/deface/archive/refs/heads/master.zip \ + && apt remove -y curl \ && rm -rf /var/lib/apt/lists/* ENTRYPOINT ["deface"]