Skip to content

Commit

Permalink
feat(aloha_ws): Install GUI debugging tools
Browse files Browse the repository at this point in the history
  • Loading branch information
j3soon committed Sep 6, 2024
1 parent 95490b4 commit 4de886e
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions aloha_ws/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,21 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
python3-pip \
&& rm -rf /var/lib/apt/lists/*

# Install GUI debugging tools
# - `x11-apps` and `x11-utils` for `xeyes` and `xdpyinfo`
# Ref: https://packages.debian.org/sid/x11-apps
# Ref: https://packages.debian.org/sid/x11-utils
# - `mesa-utils` for `glxgears` and `glxinfo`
# Ref: https://wiki.debian.org/Mesa
# - `vulkan-tools` for `vkcube` and `vulkaninfo`
# Ref: https://docs.vulkan.org/tutorial/latest/02_Development_environment.html#_vulkan_packages
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
apt-get update && apt-get install -y \
x11-apps x11-utils \
mesa-utils \
vulkan-tools \
&& rm -rf /var/lib/apt/lists/*

# Install ROS2 Gazebo packages for amd64
RUN --mount=type=cache,target=/var/cache/apt,sharing=private \
if [ "$TARGETARCH" = "amd64" ]; then \
Expand Down

0 comments on commit 4de886e

Please sign in to comment.