Skip to content

Commit fb87b48

Browse files
authored
Update expired OSRF gpg key (#227)
Signed-off-by: Jesse Ikawa <jikawa@amazon.com>
1 parent 0b287c3 commit fb87b48

5 files changed

Lines changed: 15 additions & 2 deletions

File tree

Dockerfile.backwards

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ RUN echo "yaml https://s3-us-west-2.amazonaws.com/rosdep/base.yaml" > /etc/ros/r
77
COPY . /opt/package
88
WORKDIR /opt/package
99

10+
RUN (apt-get update || true) && apt-get install --no-install-recommends --yes curl
11+
RUN curl --fail --show-error --silent --location https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add -
12+
1013
RUN apt-get update && \
1114
apt-get install -y \
1215
enchant \

Dockerfile.dashing

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ SHELL ["/bin/bash", "-c"]
55
COPY . /opt/package
66
WORKDIR /opt/package
77

8+
RUN (apt-get update || true) && apt-get install --no-install-recommends --yes curl
9+
RUN curl --fail --show-error --silent --location https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add -
10+
811
# install packages
912
RUN apt-get update && apt-get upgrade -y && apt-get install -q -y \
1013
bash-completion \
@@ -14,7 +17,6 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -q -y \
1417
python3-apt \
1518
wget \
1619
enchant \
17-
curl \
1820
sudo \
1921
wget
2022

Dockerfile.double

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ RUN echo "yaml https://s3-us-west-2.amazonaws.com/rosdep/base.yaml" > /etc/ros/r
77
COPY . /opt/package
88
WORKDIR /opt/package
99

10+
RUN (apt-get update || true) && apt-get install --no-install-recommends --yes curl
11+
RUN curl --fail --show-error --silent --location https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add -
12+
1013
RUN apt-get update && \
1114
apt-get install -y python3-pip python3-apt python-pip enchant sudo wget
1215

Dockerfile.foxy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ SHELL ["/bin/bash", "-c"]
55
COPY . /opt/package
66
WORKDIR /opt/package
77

8+
RUN (apt-get update || true) && apt-get install --no-install-recommends --yes curl
9+
RUN curl --fail --show-error --silent --location https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add -
10+
811
# install packages
912
RUN apt-get update && apt-get upgrade -y && apt-get install -q -y \
1013
bash-completion \
@@ -14,7 +17,6 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -q -y \
1417
python3-apt \
1518
wget \
1619
enchant \
17-
curl \
1820
sudo \
1921
wget
2022

Dockerfile.melodic

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ FROM ros:melodic
22

33
SHELL ["/bin/bash", "-c"]
44

5+
RUN (apt-get update || true) && apt-get install --no-install-recommends --yes curl
6+
RUN curl --fail --show-error --silent --location https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | apt-key add -
7+
58
RUN apt-get update && \
69
apt-get install -y wget && \
710
wget http://packages.osrfoundation.org/gazebo.key -O - | apt-key add - && \

0 commit comments

Comments
 (0)