Update Dockerfile example to use new verison of dlib that doesn't reuquire boost
This commit is contained in:
parent
7cfa938f74
commit
99e31be762
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue