You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-08-10 22:31:28 +02:00
add facedetect
This commit is contained in:
17
facedetect/Dockerfile
Normal file
17
facedetect/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
#
|
||||
# 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 \
|
||||
&& ln /dev/null /dev/raw1394 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENTRYPOINT ["facedetect"]
|
||||
CMD ["--help"]
|
Reference in New Issue
Block a user