Merged
Conversation
default dnf configuration for fedora container images includes tsflags=nodocs which disables all documentation from being installed. pass setopt=tsflags= to clear that setting and install the documentation.
`file` is helpful for inspecting things like patches or elf binaries bash-completion and bash-color-prompt are just nice to have to make the shell more ergonomic, and `rsync` is needed for kernel makefile headers_install target.
theyoyojo
reviewed
Sep 19, 2025
Contributor
|
oops my bad, approving
…On Fri, Sep 19, 2025 at 4:17 PM charliemirabile ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In orbit/radius.py
<#290 (comment)>
:
> @@ -813,7 +813,7 @@ def handle_containerfile(rocket):
FROM fedora:42
RUN dnf -y update && \
- dnf install -y --setopt=install_weak_deps=False \
+ dnf install -y --setopt=install_weak_deps=False --setopt=tsflags= \
read the commit message
orbit: radius: Containerfile: ensure man pages are actually installed
default dnf configuration for fedora container images includes
tsflags=nodocs which disables all documentation from being installed.
pass setopt=tsflags= to clear that setting and install the documentation.
—
Reply to this email directly, view it on GitHub
<#290 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAOSIUJTUFIAPQAUKGUYLKT3TRQFTAVCNFSM6AAAAACG7FFMDCVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZTENBWHE4DGNZYGU>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes: #288