Introduction
In this challenge, you will verify the Kali Linux version running within a Docker container. This involves accessing the container's terminal, extracting the VERSION_ID from the /etc/os-release file, and saving it to a file named version.txt in the ~/project directory on the host machine.
The setup script pulls the kalilinux/kali-rolling image if it's not present and starts a container named kali-container. You'll need to use docker exec to access the container, cat /etc/os-release to find the version, and then create the version.txt file with the extracted VERSION_ID. The verification script checks if the container is running and if the version.txt file contains the correct version.



