From a0d0ba41fa498f85bb062a3863d534e0b3849cb2 Mon Sep 17 00:00:00 2001 From: Brandon Amos Date: Tue, 12 Jul 2016 08:10:30 -0400 Subject: [PATCH] Bump dlib to 19.0 in Dockerfiles. --- Dockerfile | 2 +- opencv-dlib-torch.Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f937fa..a92736f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM bamos/ubuntu-opencv-dlib-torch:ubuntu_14.04-opencv_2.4.11-dlib_18.16-torch_2016.05.07 +FROM bamos/ubuntu-opencv-dlib-torch:ubuntu_14.04-opencv_2.4.11-dlib_19.0-torch_2016.07.12 MAINTAINER Brandon Amos RUN apt-get update && apt-get install -y \ diff --git a/opencv-dlib-torch.Dockerfile b/opencv-dlib-torch.Dockerfile index 395f949..5c81d5e 100644 --- a/opencv-dlib-torch.Dockerfile +++ b/opencv-dlib-torch.Dockerfile @@ -72,10 +72,10 @@ RUN cd ~ && \ mkdir -p dlib-tmp && \ cd dlib-tmp && \ curl -L \ - https://github.com/davisking/dlib/releases/download/v18.16/dlib-18.16.tar.bz2 \ + https://github.com/davisking/dlib/archive/v19.0.tar.gz \ -o dlib.tar.bz2 && \ tar xf dlib.tar.bz2 && \ - cd dlib-18.16/python_examples && \ + cd dlib-19.0/python_examples && \ mkdir build && \ cd build && \ cmake ../../tools/python && \