File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,12 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
26
26
python3-rosdep \
27
27
python3-rosinstall \
28
28
python3-vcstools \
29
+ curl \
29
30
&& rm -rf /var/lib/apt/lists/*
30
31
31
32
# Bootstrap rosdep
32
33
# Retry because fetching this file from github is unusually flaky
34
+ RUN curl -S https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/20-default.list
33
35
RUN bash -c 'for i in {1..5}; do rosdep init && break || sleep 15; done'
34
36
RUN rosdep update --rosdistro $ROS_DISTRO
35
37
Original file line number Diff line number Diff line change @@ -26,12 +26,10 @@ RUN echo 'Etc/UTC' > /etc/timezone && \
26
26
rm -rf /var/lib/apt/lists/*
27
27
28
28
# Install packages
29
- # ca-certificates is to get https to work when initializing rosdep in ros-base
30
29
RUN apt-get update && apt-get install -q -y --no-install-recommends \
31
30
dirmngr \
32
31
gnupg2 \
33
32
lsb-release \
34
- ca-certificates \
35
33
&& rm -rf /var/lib/apt/lists/*
36
34
37
35
# Setup keys
You can’t perform that action at this time.
0 commit comments