From d8ff6e3fdbcf734c0b6b86117f82262a040f8c6f Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 26 Jun 2026 03:04:43 +0000 Subject: [PATCH] singularity: add man-db to container image Installs the `man` command so manual pages are available inside the mqyolo sandbox. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01VpBbpsyhdPcYS9oxkWfZHA --- singularity/ai_tool.def | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/singularity/ai_tool.def b/singularity/ai_tool.def index 849ffcf..22e433e 100644 --- a/singularity/ai_tool.def +++ b/singularity/ai_tool.def @@ -13,8 +13,9 @@ From: node:24 # rsync: commonly invoked for file transfers inside sessions. # curl: needed for Codex CLI installation script. # gawk: needed for Codex CLI installation script. + # man-db: provides the `man` command for reading manual pages. apt-get update - apt-get install -y --no-install-recommends time less rsync curl ca-certificates gawk jq + apt-get install -y --no-install-recommends time less rsync curl ca-certificates gawk jq man-db rm -rf /var/lib/apt/lists/* # Install Claude Code, OpenAI Codex CLI, and GitHub Copilot CLI