🔅Setting up Python Interpreter and running Python Code on Docker Container
💥To Setting up Python Interpreter and running Python Code on Docker Container we need to follow following steps:
✍️Step 1 : First launch new container in Docker using image (Centos:8)
docker run -it centos
✍️Step 2: install the python software
yum install python3
✍️Step 3: Create Python File and write Python Code
vi arp.py cat arp.py
✍️Step 4: run our python codes on top of docker container
python3 arp.py