-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathDockerfile
More file actions
39 lines (29 loc) · 1.42 KB
/
Dockerfile
File metadata and controls
39 lines (29 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM ubuntu:20.04
# Correctly install tzdata (which normally has interactive prompts) for Docker image
RUN DEBIAN_FRONTEND="noninteractive" TZ="America/New_York" apt-get -y update && apt-get -y install tzdata
# Get general dependencies:
RUN apt-get -y update && apt-get -y install cmake lsb-release curl build-essential gnutls-bin
# Update and install remaining package dependencies
RUN apt-get -y update && apt-get -y install sudo openssh-client \
software-properties-common libgl1-mesa-dev libglew-dev libwayland-dev \
libxkbcommon-dev wayland-protocols git
# GCC/G++9 needed
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
RUN apt-get -y update && apt-get -y install gcc-9 g++-9
# Ensure we use the gcc-9 and g++-9
RUN export CC=/usr/bin/gcc-9
RUN export CXX=/usr/bin/g++-9
# libboost required by GTSAM
RUN apt-get -y update && apt-get -y install libboost-all-dev libtbb-dev
# Build and install GTSAM
RUN git clone https://github.com/borglab/gtsam.git && \
cd gtsam && \
git checkout 4.2a8 && \
cd .. && \
mkdir gtsam/build && cd gtsam/build && \
cmake .. && make -j8 install
# libgtest needed for DCSAM
RUN apt-get -y update && apt-get -y install libprotobuf-dev protobuf-compiler libgtest-dev
RUN cd /usr/src/gtest && mkdir build && cd build && cmake .. -DBUILD_SHARED_LIBS=ON && make && ls lib && cp /usr/src/gtest/build/lib/* /usr/include/
# Eigen3.3 needed for DCSAM
RUN apt-get -y update && apt-get -y install libeigen3-dev