From 03407a9ed937033eb9ce49c8a7a27b4759ac237b Mon Sep 17 00:00:00 2001 From: Murilo Santos Bueno Date: Thu, 4 Apr 2024 08:13:25 -0300 Subject: [PATCH] Update Dockerfile.dependencies Installing version 19.24.2 of the dlib library, dependency on the face_recognition library. Dlib update of yesterday for version 19.4.4 has an error. --- Dockerfile.dependencies | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.dependencies b/Dockerfile.dependencies index 2116c19..7e1a2fb 100644 --- a/Dockerfile.dependencies +++ b/Dockerfile.dependencies @@ -246,6 +246,7 @@ RUN mkdir -p ${PKGTMPDIR} && cd ${PKGTMPDIR} \ && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 \ && python -m pip install pip --upgrade \ && python -m pip install cmake \ + && python -m pip install dlib==19.24.2 \ && python -m pip install numpy \ && python -m pip install jep==4.0.3 \ # && python -m pip install torch==1.13.1+cu117 torchvision==0.14.1+cu117 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu117 \