我正在运行python Flask服务器,该服务器正在使用https://github.com/ageitgey/face_recognition进行人脸识别。
通过docker运行时,face_encodings
函数所花的时间比仅在我的机器上启动服务器时要长10倍,我不知道为什么。
我认为我的Dockerfile最重要的部分是:
FROM python:3.6-slim-stretch
RUN cd ~ && \
mkdir -p dlib && \
git clone -b 'v19.9' --single-branch https://github.com/davisking/dlib.git dlib/ && \
cd dlib/ && \
python3 setup.py install --yes USE_AVX_INSTRUCTIONS
我做错什么了吗?为什么Docker容器这么慢?我是否以错误的方式安装dlib
?