Skip to content

Commit 94e6bdb

Browse files
committed
fixed QoS incompatibility with jazzy
1 parent cf43ec8 commit 94e6bdb

File tree

5 files changed

+320
-315
lines changed

5 files changed

+320
-315
lines changed

Docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
FROM osrf/ros:jazzy-desktop-full
1+
FROM osrf/ros:humble-desktop-full
22

33

44
RUN apt-get update && apt-get upgrade -y
55
RUN DEBIAN_FRONTEND=noninteractive apt-get install software-properties-common ros-dev-tools python3-colcon-common-extensions -y
66
RUN DEBIAN_FRONTEND=noninteractive apt-get install ros-${ROS_DISTRO}-angles ros-${ROS_DISTRO}-tf2 ros-${ROS_DISTRO}-tf2-ros ros-${ROS_DISTRO}-tf2-geometry-msgs
7-
RUN DEBIAN_FRONTEND=noninteractive apt-get install libboost-filesystem1.83-dev
7+
#RUN DEBIAN_FRONTEND=noninteractive apt-get install libboost-filesystem1.83-dev
8+
RUN apt install rapidjson-dev
89
# BT.ROS2 related deps
910
RUN DEBIAN_FRONTEND=noninteractive apt-get install ros-${ROS_DISTRO}-generate-parameter-library -y
1011
# Boost & yaml-cpp
@@ -22,6 +23,7 @@ COPY deps.repos /deps.repos
2223
# Make sure it is executable
2324
RUN chmod +x /entrypoint.sh
2425

26+
RUN useradd -m ubuntu
2527
USER ubuntu
2628
RUN mkdir -p /home/ubuntu/eut_bt_ros2_ws/src
2729
WORKDIR /home/ubuntu/eut_bt_ros2_ws/src

Docker/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
network_mode: host
77
#runtime: nvidia
88
user: ubuntu
9-
image: eut_bt_ros2:jazzy
9+
image: eut_bt_ros2:humble
1010
privileged: true
1111
volumes:
1212
- /tmp/.X11-unix:/tmp/.X11-unix:rw

Docker/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
ROS_DISTRO=jazzy
2+
ROS_DISTRO=humble
33

44

55
set -e

0 commit comments

Comments
 (0)