After this step, we have a container with all the required tools. In the next step we will create an image from that container, so we can use that image whenever we want to create a fresh container for kali with all tools
2 - Creating Docker Image from a Container :
After creating the container and configure it , we will create an image from that container
first we should stop the container
then save the container to an image
list images to get image id (to pass it to save command )
then save the image to a .tar file
Now the kali docker image with all tools are ready to be used. We can import that image into another machine (where Docker is installed) and create container from it.