Skip to content

Commit

Permalink
Debug ROS docker images, fixed GPG key expired issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ipa-nhg committed Nov 30, 2023
1 parent 0ae9f61 commit 49850bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions humble/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM ros:humble
ARG enable_ssh
ARG path_to_scripts
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 4B63CF8FDE49746E98FA01DDAD19BAB3CBF125EA

RUN apt-get update && apt upgrade -y && apt-get install -y \
cppcheck \
Expand Down
3 changes: 2 additions & 1 deletion melodic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Use an official Python runtime as a parent image
FROM osrf/ros:melodic-desktop
FROM ros:melodic
ARG enable_ssh
ARG path_to_scripts

RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 4B63CF8FDE49746E98FA01DDAD19BAB3CBF125EA

RUN apt-get update && apt upgrade -y && apt-get install -y \
cppcheck \
Expand Down
3 changes: 2 additions & 1 deletion noetic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Use an official Python runtime as a parent image
FROM osrf/ros:noetic-desktop
FROM ros:noetic
ARG enable_ssh
ARG path_to_scripts

RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 4B63CF8FDE49746E98FA01DDAD19BAB3CBF125EA

RUN apt-get update && apt upgrade -y && apt-get install -y \
cppcheck \
Expand Down

0 comments on commit 49850bd

Please sign in to comment.