Add iputils-ping (ping) to Docker image - #32015
Merged
Merged
Conversation
ninjmnky
force-pushed
the
add-iputils-ping
branch
from
May 27, 2026 16:05
3da8f5f to
d0147b8
Compare
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile.
ninjmnky
force-pushed
the
add-iputils-ping
branch
from
May 28, 2026 08:03
d0147b8 to
7be3ce5
Compare
Contributor
Author
|
Hey @benbarclay 👋 quick one-line add of |
KKT-OPT
pushed a commit
to KKT-OPT/hermes-agent
that referenced
this pull request
May 31, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
hechuyi
pushed a commit
to hechuyi/hermes-agent
that referenced
this pull request
Jun 6, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com> (cherry picked from commit 593e4b4)
alt-glitch
pushed a commit
that referenced
this pull request
Jun 14, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
T02200059
pushed a commit
to T02200059/hermes-agent
that referenced
this pull request
Jun 18, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
xyshanren
pushed a commit
to xyshanren/hermes-agent-cn
that referenced
this pull request
Jun 25, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
waefrebeorn
pushed a commit
to waefrebeorn/slermes
that referenced
this pull request
Jul 2, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
santhreal
pushed a commit
to santhreal/hermes-agent
that referenced
this pull request
Jul 13, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
donbowman
pushed a commit
to donbowman/hermes-agent
that referenced
this pull request
Jul 13, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
Gravezzz
pushed a commit
to Gravezzz/hermes-agent
that referenced
this pull request
Jul 21, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
leewenjie
pushed a commit
to leewenjie/hermes-agent
that referenced
this pull request
Aug 7, 2026
ping is a fundamental network diagnostic tool that most users expect to have available in the container. This adds iputils-ping to the apt install list in the Dockerfile. Co-authored-by: ninjmnky <ninjmnky@users.noreply.github.com>
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.
Problem
The official Hermes Agent Docker image does not include
ping(fromiputils-ping), a fundamental network diagnostic tool that most sysadmins and developers expect to have available out of the box.Running
pinginside the container currently fails with:Solution
Add
iputils-pingto theapt-get installcommand in the Dockerfile. This is a one-word, zero-risk change — the package is ~50KB and has no additional dependencies beyond what libc already provides.Why upstream?
Per the contributing guidelines: "If a tool is likely to be useful to most Hermes Agent users, consider contributing it upstream rather than carrying it in a private derived image."
pingis orders of magnitude more universally useful than most of the utilities already in the image (and far smaller too). Having it missing means every user who needs basic network diagnostics has to fork the image, which is exactly the overhead the guidelines aim to avoid.Changed
Dockerfile: Addediputils-pingto the apt package list.