I have a multi-directory Python Selenium app that I want to put into a container with Docker
I don't have experience with this tech, so I tried making a Dockerfile this way Dockerfile:
FROM python:3.8 COPY ./* ./RUN pip install selenium pytest pytest-htmlCMD python /tests/form_page/test_form_page.pyI want this Python app run from a container
I also uderstand that I need to add a venv (probably) and a Chrome driver for this app to work, but I don't know how to do this
Could you please help me out on this one?
PS if this would help here's the source code https://github.com/anatolyRozhkov/RozhkovPetProject.git