-
Notifications
You must be signed in to change notification settings - Fork 172
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
1 parent
f10f345
commit 3df1d15
Showing
9 changed files
with
168 additions
and
14 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
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,40 @@ | ||
# This is an auto generated Dockerfile for ros2:ardent-basic | ||
# generated from docker_images/create_ros2_image.Dockerfile.em | ||
FROM osrf/ros2:ardent-core | ||
|
||
# install packages | ||
RUN apt-get update && apt-get install -q -y \ | ||
python3-pip \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# install python packages | ||
RUN pip3 install -U \ | ||
argcomplete | ||
# install ros2 packages | ||
RUN apt-get update && apt-get install -y \ | ||
ros-ardent-common-interfaces \ | ||
ros-ardent-composition \ | ||
ros-ardent-demo-nodes-cpp \ | ||
ros-ardent-demo-nodes-cpp-native \ | ||
ros-ardent-demo-nodes-py \ | ||
ros-ardent-examples* \ | ||
ros-ardent-launch \ | ||
ros-ardent-lifecycle \ | ||
ros-ardent-logging-demo \ | ||
ros-ardent-ros2msg \ | ||
ros-ardent-ros2node \ | ||
ros-ardent-ros2pkg \ | ||
ros-ardent-ros2run \ | ||
ros-ardent-ros2service \ | ||
ros-ardent-ros2srv \ | ||
ros-ardent-ros2topic \ | ||
ros-ardent-sros2 \ | ||
ros-ardent-tf2* \ | ||
ros-ardent-tlsf* \ | ||
ros-ardent-topic-monitor \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# setup entrypoint | ||
COPY ./ros2_entrypoint.sh / | ||
|
||
ENTRYPOINT ["/ros2_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 ros2 environment | ||
source "/opt/ros/$ROS2_DISTRO/setup.bash" | ||
exec "$@" |
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
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,32 @@ | ||
# This is an auto generated Dockerfile for ros2:ardent-full | ||
# generated from docker_images/create_ros2_image.Dockerfile.em | ||
FROM osrf/ros2:ardent-basic | ||
|
||
# install ros2 packages | ||
RUN apt-get update && apt-get install -y \ | ||
ros-ardent-astra-camera \ | ||
ros-ardent-cartographer-ros \ | ||
ros-ardent-depthimage-to-laserscan \ | ||
ros-ardent-depthimage-to-pointcloud2 \ | ||
ros-ardent-dummy-map-server \ | ||
ros-ardent-dummy-robot-bringup \ | ||
ros-ardent-dummy-sensors \ | ||
ros-ardent-image-tools \ | ||
ros-ardent-intra-process-demo \ | ||
ros-ardent-joy \ | ||
ros-ardent-launch-testing \ | ||
ros-ardent-map-server \ | ||
ros-ardent-pcl-conversions \ | ||
ros-ardent-pendulum-control \ | ||
ros-ardent-robot-state-publisher \ | ||
ros-ardent-rosidl-default-generators \ | ||
ros-ardent-rviz2 \ | ||
ros-ardent-rviz-default-plugins \ | ||
ros-ardent-teleop-twist-joy \ | ||
ros-ardent-teleop-twist-keyboard \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# setup entrypoint | ||
COPY ./ros2_entrypoint.sh / | ||
|
||
ENTRYPOINT ["/ros2_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 ros2 environment | ||
source "/opt/ros/$ROS2_DISTRO/setup.bash" | ||
exec "$@" |
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
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
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