From 5ae034ffdf7bebbe61f5e6525e2b431e4eb145f2 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Fri, 26 Jul 2024 10:03:26 -0600 Subject: [PATCH] chore: Add iputils-ping package to Dockerfile The Dockerfile has been modified to include the installation of the `iputils-ping` package. This change ensures that the `ping` command is available within the Docker container. See this file in the repository: `Probe/Dockerfile.tpl` --- Probe/Dockerfile.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Probe/Dockerfile.tpl b/Probe/Dockerfile.tpl index 397b92bcfc..d96c2ec4b6 100644 --- a/Probe/Dockerfile.tpl +++ b/Probe/Dockerfile.tpl @@ -25,7 +25,7 @@ RUN if [ -z "$APP_VERSION" ]; then export APP_VERSION=1.0.0; fi RUN apt-get update # Install bash. -RUN apt-get install bash -y && apt-get install curl -y +RUN apt-get install bash -y && apt-get install curl -y && apt-get install iputils-ping -y # Install python RUN apt-get update && apt-get install -y .gyp python3 make g++