18 lines
573 B
Plaintext
18 lines
573 B
Plaintext
FROM animcogn/face_recognition:cpu
|
|
|
|
# The rest of this file just runs an example script.
|
|
|
|
# If you wanted to use this Dockerfile to run your own app instead, maybe you would do this:
|
|
# COPY . /root/your_app_or_whatever
|
|
# RUN cd /root/your_app_or_whatever && \
|
|
# pip3 install -r requirements.txt
|
|
# RUN whatever_command_you_run_to_start_your_app
|
|
|
|
COPY . /root/face_recognition
|
|
RUN cd /root/face_recognition && \
|
|
pip3 install -r requirements.txt && \
|
|
python3 setup.py install
|
|
|
|
CMD cd /root/face_recognition/examples && \
|
|
python3 recognize_faces_in_pictures.py
|