Added docker file to build pipeline docker image

release/4.3a0
Frank Dellaert 2018-10-08 21:38:11 -04:00
parent e742cde2c8
commit 5d49177c8a
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Get the base Ubuntu image from Docker Hub
FROM ubuntu:latest
# Update apps on the base image
RUN apt-get -y update && apt-get install -y
# Install C++
RUN apt-get -y install build-essential
# Install boost and cmake
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