π οΈ Operating System Command-line Tools for Installing Packages¶
π§ Installing tools for Alpine¶
# Download the latest list of available packages
apk update
# Curl / Ping
apk add --no-cache curl iputils-ping
π§ Installing tools for Ubuntu / Debian¶
# Download the latest list of available packages
apt update
# Curl / Ping
apt install -y curl iputils-ping