1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/facedetect/Dockerfile

17 lines
422 B
Docker
Raw Normal View History

2016-05-27 01:42:43 +00:00
#
# Dockerfile for facedetect
#
FROM debian:jessie
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2016-05-27 01:42:43 +00:00
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"]