forked from tomas789/kitti2bag
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tomas Krejci
committed
Dec 29, 2018
1 parent
4f4d2b1
commit 09848b0
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM ros:lunar-ros-base | ||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get -y install \ | ||
ros-lunar-cv-bridge \ | ||
ros-lunar-opencv3 \ | ||
ros-lunar-tf \ | ||
python-pip python-matplotlib \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
COPY . /kitti2bag | ||
RUN pip install -e /kitti2bag | ||
ENTRYPOINT ["/kitti2bag/docker_entrypoint.sh"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# setup ros environment | ||
source "/opt/ros/$ROS_DISTRO/setup.bash" | ||
exec kitti2bag "$@" |