Create the Pipeline and Run the Tests
Learn how to create the pipeline and execute the Selenium tests using Docker containers.
We'll cover the following...
The pipeline that runs the Selenium tests in a Docker container relies on the Dockerfile
from the root
project folder:
Press + to interact
FROM selenium/node-chromeCOPY . .USER rootRUN apt-get updateRUN apt-get install maven -yRUN apt-get install openjdk-8-jdk -yENTRYPOINT ["bash", "command.sh"]
Add the above
Dockerfile
to the ...