1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/deface/Dockerfile

18 lines
450 B
Docker
Raw Normal View History

2021-12-13 06:51:17 +00:00
#
# Dockerfile for deface
#
FROM debian:bullseye
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apt update \
2022-02-14 09:57:49 +00:00
&& 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 \
2021-12-13 06:51:17 +00:00
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["deface"]
CMD ["--help"]