FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
LIO-SAM/Dockerfile at master · AutoModality/LIO-SAM · GitHub
AutoModality
/
LIO-SAM
Public
forked from
TixiaoShan/LIO-SAM
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
LIO-SAM
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (25 loc) · 1.04 KB
Breadcrumbs
LIO-SAM
/
Dockerfile
Copy path
File metadata and controls
31 lines (25 loc) · 1.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
FROM
osrf/ros:kinetic-desktop-full-xenial
RUN
apt-get update \
&& apt-get install -y curl \
&& curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add - \
&& apt-get update \
&& apt-get install -y ros-kinetic-navigation \
&& apt-get install -y ros-kinetic-robot-localization \
&& apt-get install -y ros-kinetic-robot-state-publisher \
&& rm -rf /var/lib/apt/lists/*
RUN
apt-get update \
&& apt install -y software-properties-common \
&& add-apt-repository -y ppa:borglab/gtsam-release-4.0 \
&& apt-get update \
&& apt install -y libgtsam-dev libgtsam-unstable-dev \
&& rm -rf /var/lib/apt/lists/*
SHELL
[
"/bin/bash"
,
"-c"
]
RUN
mkdir -p ~/catkin_ws/src \
&& cd ~/catkin_ws/src \
&& git clone https://github.com/TixiaoShan/LIO-SAM.git \
&& cd .. \
&& source /opt/ros/kinetic/setup.bash \
&& catkin_make
RUN
echo
"source /opt/ros/kinetic/setup.bash"
>> /root/.bashrc \
&& echo
"source /root/catkin_ws/devel/setup.bash"
>> /root/.bashrc
WORKDIR
/root/catkin_ws
Back
|
FazBrowse Home
|
New Git URL