-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
Broken keyserver url in https://gazebosim.org/api/cmake/4/install.html.
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys D2486D2DD83DB69272AFE98867170598AF249743:
0.292 Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
0.314 Executing: /tmp/apt-key-gpghome.Z7yzYW6pZU/gpg.1.sh --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys D2486D2DD83DB69272AFE98867170598AF249743
20.41 gpg: keyserver receive failed: Server indicated a failure
Dockerfile:
FROM ghcr.io/sloretz/ros:jazzy-simulation
ENV HOME="/root"
ENV ROS_DISTRO="jazzy"
ENV WORKSPACE="${HOME}/gnss_sim"
# Install dependencies
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
ninja-build && \
rm -rf /var/lib/apt/lists/*
RUN echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys D2486D2DD83DB69272AFE98867170598AF249743
RUN apt-get update && apt-get install -y \
libgz-cmake4-dev && \
rm -rf /var/lib/apt/lists/*
Workarround: using hkp://keyserver.ubuntu.com:80
instead of hkp://p80.pool.sks-keyservers.net:80
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Inbox