1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/deface/Dockerfile
2021-12-13 14:51:17 +08:00

18 lines
427 B
Docker

#
# Dockerfile for deface
#
FROM debian:bullseye
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 \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["deface"]
CMD ["--help"]