forked from moveit/moveit2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Allow non-interactive installation of rmw-connextdds
- Loading branch information
Showing
2 changed files
with
5 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 |
---|---|---|
|
@@ -6,6 +6,8 @@ FROM ros:${ROS_DISTRO}-ros-base | |
LABEL maintainer Robert Haschke [email protected] | ||
|
||
ENV TERM xterm | ||
# Allow non-interactive installation of ros-humble-rmw-connextdds | ||
ENV RTI_NC_LICENSE_ACCEPTED yes | ||
|
||
# Setup (temporary) ROS workspace | ||
WORKDIR /root/ws_moveit | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,9 @@ ARG ROS_DISTRO=rolling | |
FROM ros:${ROS_DISTRO}-ros-base | ||
LABEL maintainer Robert Haschke [email protected] | ||
|
||
# Allow non-interactive installation of ros-humble-rmw-connextdds | ||
ENV RTI_NC_LICENSE_ACCEPTED yes | ||
|
||
# Commands are combined in single RUN statement with "apt/lists" folder removal to reduce image size | ||
RUN apt-get update -q && \ | ||
apt-get upgrade -q -y && \ | ||
|