From ce74df99ceaff80c8aa897784cc012ae108a81ce Mon Sep 17 00:00:00 2001 From: Martin Aumueller Date: Thu, 7 Mar 2019 08:50:49 +0100 Subject: [PATCH] FLANN needs explicit installation of libraries. https://github.com/mariusmuja/flann/pull/399 --- install/Dockerfile.flann | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/Dockerfile.flann b/install/Dockerfile.flann index 4ca2584ea..ecc2e0959 100644 --- a/install/Dockerfile.flann +++ b/install/Dockerfile.flann @@ -1,6 +1,6 @@ FROM ann-benchmarks -RUN apt-get update && apt-get install -y cmake +RUN apt-get update && apt-get install -y cmake pkg-config liblz4-dev RUN git clone https://github.com/mariusmuja/flann RUN mkdir flann/build RUN cd flann/build && cmake ..