forked from changh95/fastcampus_slam_codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
53 lines (46 loc) · 1.65 KB
/
Dockerfile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM --platform=linux/amd64 ubuntu:jammy
MAINTAINER changh95
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install build-essential -y && \
apt-get install cmake -y && \
apt-get install git -y && \
apt-get install sudo -y && \
apt-get install wget -y && \
apt-get install ninja-build -y && \
apt-get install software-properties-common -y && \
apt-get install python3 -y && \
apt-get install python3-pip -y && \
apt-get install -y ssh && \
apt-get install -y gcc && \
apt-get install -y g++ && \
apt-get install -y gdb && \
apt-get install -y cmake && \
apt-get install -y rsync && \
apt-get install -y tar && \
apt-get install -y x11-utils && \
apt-get install -y x11-apps && \
apt-get install -y zip &&\
apt-get clean
RUN apt-get install -y mesa-utils && \
apt-get install -y libgl1-mesa-glx && \
apt-get install -y libglu1-mesa-dev && \
apt-get install -y libglew-dev &&\
apt-get install -y libglvnd-dev &&\
apt-get install -y libgl1-mesa-dev &&\
apt-get install -y libegl1-mesa-dev &&\
apt-get install -y mesa-common-dev
RUN apt-get install -y qtbase5-dev qt5-qmake libqglviewer-dev-qt5
RUN cd / && \
mkdir data && cd data && \
wget http://ais.informatik.uni-freiburg.de/projects/datasets/octomap/fr_campus.graph.gz && \
gzip -d fr_campus.graph.gz
RUN cd / && \
git clone https://github.com/OctoMap/octomap.git &&\
cd octomap && \
cd octomap && \
mkdir build && cd build &&\
cmake .. && make -j4 && make install &&\
cd ../../octovis &&\
mkdir build && cd build &&\
cmake .. && make -j4