I want to create a docker image with selenium
and chrome
correctly installed, so I choose a base image with these properties. Therefore, the first
Note: Below commands may require root/administrative previleges.
docker pull ubuntu
docker run -it ubuntu /bin/bash
Note: By default you will be logged in inside container as root user if not then either elevate your privileges to root or use sudo
before below listed commands
apt-get update
apt-get install python2
apt-get install python3