How can I install the package for "networks" on a very think ubuntu image in docker?
I need to add this package in an image using a Dockerfile
How can I install the package for "networks" on a very think ubuntu image in docker?
I need to add this package in an image using a Dockerfile
I found the answer here:
https://stackoverflow.com/questions/51834978/ip-command-is-missing-from-ubuntu-docker-image
# apt update
# apt install iproute2 -y
My docker container although didn't have iproute2 package installed, the internet connection was active.
ip
program is a part ofiproute2
package