Since setup can get very complicated and take a long time, which is not on the agenda for this chapter, we will be building a Docker image that contains all the dependencies, including dlib, OpenFace, and FaceNet.
Setup environment
Getting the code
Fetch the code that we will use to build face recognition from the repository:
git clone https://github.com/PacktPublishing/Python-Deep-Learning-Projects
cd Chapter10/
Building the Docker image
Docker is a container platform that simplifies deployment. It solves the problem of installing software dependencies onto different server...