laforge has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/33918 )
Change subject: debian-bullseye-titan-*/Dockerfile: Replace inetutils-ping with iputils-ping ......................................................................
debian-bullseye-titan-*/Dockerfile: Replace inetutils-ping with iputils-ping
iCurrently we install inetutils-ping in some docker images and iputils-ping in others; let's make it more uniform to avoid running different implementations in different images. The iputils-ping provides further linux-specific features, such as the "-I interface" param, which is used by some images, so let's pick that one everywhere.
Change-Id: If11a1c2ae1115b585b6a44a45e9569c16856d8c4 --- M debian-bullseye-titan-master/Dockerfile M debian-bullseye-titan/Dockerfile 2 files changed, 18 insertions(+), 2 deletions(-)
Approvals: laforge: Looks good to me, approved osmith: Looks good to me, but someone else must approve Jenkins Builder: Verified
diff --git a/debian-bullseye-titan-master/Dockerfile b/debian-bullseye-titan-master/Dockerfile index 1acfb73..a7ec65d 100644 --- a/debian-bullseye-titan-master/Dockerfile +++ b/debian-bullseye-titan-master/Dockerfile @@ -18,7 +18,7 @@ DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends --no-install-suggests \ build-essential \ git \ - inetutils-ping \ + iputils-ping \ netcat-openbsd \ procps \ python3-pip \ diff --git a/debian-bullseye-titan/Dockerfile b/debian-bullseye-titan/Dockerfile index 7bf180f..2274cc4 100644 --- a/debian-bullseye-titan/Dockerfile +++ b/debian-bullseye-titan/Dockerfile @@ -23,7 +23,7 @@ DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends --no-install-suggests \ build-essential \ git \ - inetutils-ping \ + iputils-ping \ netcat-openbsd \ procps \ python3-pip \