show building docker image as well

This commit is contained in:
Sefik Ilkin Serengil 2024-06-03 21:08:40 +01:00
parent b1661fb72d
commit 3a358fc377

View File

@ -324,7 +324,8 @@ Face recognition, facial attribute analysis and vector representation functions
The following command set will serve deepface on `localhost:5005` via docker. Then, you will be able to consume deepface services such as verify, analyze and represent. Also, if you want to build the image by your own instead of pre-built image from docker hub, [Dockerfile](https://github.com/serengil/deepface/blob/master/Dockerfile) is available in the root folder of the project.
```shell
docker pull serengil/deepface
# docker build -t serengil/deepface . # build docker image
docker pull serengil/deepface # use pre-built docker image
docker run -p 5005:5000 serengil/deepface
```