We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab85ba commit 2cef6b0Copy full SHA for 2cef6b0
1 file changed
.devcontainer/Dockerfile
@@ -5,13 +5,6 @@ ARG USER_UID=1000
5
ARG USER_GID=$USER_UID
6
7
ENV DEBIAN_FRONTEND=noninteractive
8
-
9
-RUN apt-key del F42ED6FBAB17C654 && \
10
- mkdir -p /etc/apt/keyrings && \
11
- curl -fsSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key | gpg --dearmor | sudo tee /etc/apt/keyrings/ros-archive-keyring.gpg > /dev/null && \
12
- echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu noble main" | sudo tee /etc/apt/sources.list.d/ros2.list && \
13
- rm /etc/apt/sources.list.d/ros2-latest.list 2>/dev/null || true
14
15
RUN userdel $(getent passwd 1000 | cut -d: -f1)
16
RUN groupadd --gid $USER_GID $USERNAME \
17
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \
0 commit comments