From 9c8b5fa9c2f790a1ed6b2e4866fa423af0443f3e Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 25 Jul 2023 12:38:02 +0200 Subject: [PATCH] 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 --- debian-bullseye-titan-master/Dockerfile | 2 +- debian-bullseye-titan/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian-bullseye-titan-master/Dockerfile b/debian-bullseye-titan-master/Dockerfile index 1acfb73c..a7ec65d8 100644 --- a/debian-bullseye-titan-master/Dockerfile +++ b/debian-bullseye-titan-master/Dockerfile @@ -18,7 +18,7 @@ RUN apt-get update && \ 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 7bf180fc..2274cc43 100644 --- a/debian-bullseye-titan/Dockerfile +++ b/debian-bullseye-titan/Dockerfile @@ -23,7 +23,7 @@ RUN apt-get update && \ 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 \