-
Notifications
You must be signed in to change notification settings - Fork 183
Description
Hi,
I have had the following problem about a bit more than a month ago: latest kinetic docker images causes crash at start of at least the following nodes: diagnostic aggregator and static tf transformer. When I compile them from source using the docker image, problem is solved. It really looks like a binary / lib compatibility problem.
By the way, these packages did not crash in previous versions of the docker image (sorry, do not have the exact history of when it started to happen) and it doesn't crash on my current Ubuntu 16.04.
To reproduce the issue:
FROM ros:kinetic-ros-base-xenial
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils && rm -rf /var/lib/apt/lists/*
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends libgeographic-dev python-catkin-tools && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y --no-install-recommends \
ros-kinetic-diagnostic-aggregator \
ros-kinetic-diagnostic-updater \
&& rm -rf /var/lib/apt/lists/*
Then run the image with
docker run -it --entrypoint /bin/bash YOU_IMAGE_NAME
and after sourcing, try to roslaunch an aggregator node (diagnostic_aggregator / aggregator_node).
Same thing for tf / static_transform_publisher.
Do you have any idea ? I will try to rebuild the whole composition of docker files from scratch without cache.