Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion singularity/ai_tool.def
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Install man pages, not just man-db

When this definition is built from the Debian-based node:24 image, the base image's dpkg Docker config still excludes /usr/share/man/*, and this apt command also keeps --no-install-recommends; as a result this adds /usr/bin/man but continues discarding the manual-page files for man-db, jq, curl, etc. In the rebuilt mqyolo image, common checks like man man or man jq still have no manual entry, so the stated goal of making manuals available is not met unless the dpkg exclude is removed before installing/reinstalling the relevant manpage packages.

Useful? React with 👍 / 👎.

rm -rf /var/lib/apt/lists/*

# Install Claude Code, OpenAI Codex CLI, and GitHub Copilot CLI
Expand Down
Loading