1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:02 +02:00
dockerfiles/facedetect/Dockerfile

17 lines
423 B
Docker
Raw Normal View History

2016-05-27 03:42:43 +02:00
#
# Dockerfile for facedetect
#
FROM debian:jessie
MAINTAINER kev <noreply@easypi.info>
RUN set -xe \
&& apt-get update \
&& apt-get install -y curl python python-opencv libopencv-dev \
&& curl -sSL https://github.com/wavexx/facedetect/raw/master/facedetect > /usr/local/bin/facedetect \
&& chmod +x /usr/local/bin/facedetect \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["facedetect"]
CMD ["--help"]