removed dependency on Eigen3 since we provide Eigen 3.3.7 and Ubuntu Bionic provides Eigen 3.3.4.

release/4.3a0
Varun Agrawal 2020-06-02 15:13:30 -05:00
parent 4711ca8980
commit d0bd3d8715
1 changed files with 1 additions and 5 deletions

View File

@ -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