From d0bd3d87154f411a66e2cd3ca2e537e46f47568e Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Tue, 2 Jun 2020 15:13:30 -0500 Subject: [PATCH] removed dependency on Eigen3 since we provide Eigen 3.3.7 and Ubuntu Bionic provides Eigen 3.3.4. --- .../Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) rename docker/{ubuntu-boost-tbb-eigen3 => ubuntu-boost-tbb}/Dockerfile (72%) diff --git a/docker/ubuntu-boost-tbb-eigen3/Dockerfile b/docker/ubuntu-boost-tbb/Dockerfile similarity index 72% rename from docker/ubuntu-boost-tbb-eigen3/Dockerfile rename to docker/ubuntu-boost-tbb/Dockerfile index 33aa1ab96..6dd9dfa62 100644 --- a/docker/ubuntu-boost-tbb-eigen3/Dockerfile +++ b/docker/ubuntu-boost-tbb/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:bionic # Update apps on the base image -RUN apt-get -y update && apt-get install -y +RUN apt-get -y update && apt install -y # Install C++ RUN apt-get -y install build-essential @@ -12,7 +12,3 @@ RUN apt-get -y install libboost-all-dev cmake # Install TBB RUN apt-get -y install libtbb-dev - -# Install latest Eigen -RUN apt-get install -y libeigen3-dev -