2018-10-09 09:38:11 +08:00
|
|
|
# Get the base Ubuntu image from Docker Hub
|
2018-10-09 11:13:15 +08:00
|
|
|
FROM ubuntu:xenial
|
2018-10-09 09:38:11 +08:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|