Update Dockerfile example to use new verison of dlib that doesn't reuquire boost

This commit is contained in:
Adam Geitgey 2018-02-01 10:57:37 -08:00
parent 7cfa938f74
commit 99e31be762
1 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,6 @@ RUN apt-get install -y --fix-missing \
libatlas-dev \
libavcodec-dev \
libavformat-dev \
libboost-all-dev \
libgtk2.0-dev \
libjpeg-dev \
liblapack-dev \
@ -29,7 +28,7 @@ RUN apt-get install -y --fix-missing \
RUN cd ~ && \
mkdir -p dlib && \
git clone -b 'v19.7' --single-branch https://github.com/davisking/dlib.git 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