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`
This commit is contained in:
Simon Larsen 2024-07-26 10:03:26 -06:00
parent be75960aff
commit 5ae034ffdf
No known key found for this signature in database
GPG Key ID: 96C5DCA24769DBCA

View File

@ -25,7 +25,7 @@ RUN if [ -z "$APP_VERSION" ]; then export APP_VERSION=1.0.0; fi
RUN apt-get update RUN apt-get update
# Install bash. # 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 # Install python
RUN apt-get update && apt-get install -y .gyp python3 make g++ RUN apt-get update && apt-get install -y .gyp python3 make g++