ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

As a counterpart, I present my maximally sneaky and invasive implementation:

# frozen-rosdep.dockerfile
FROM ros
ENV ROSDISTRO_INDEX_URL="file:///etc/ros/index-v4.yaml"
RUN set -eu \
  && apt -y update \
  && apt -y install curl \
  && curl -fsSL https://github.com/ros/rosdistro/archive/master.tar.gz \
       | tar -C /etc/ros --strip-components 1 -xzf- \
  && sed -i s,https://raw.githubusercontent.com/ros/rosdistro/master,file:///etc/ros,g \
       /etc/ros/rosdep/sources.list.d/20-default.list \
  && rosdep update --verbose \
  && true