11 lines
241 B
Plaintext
11 lines
241 B
Plaintext
FROM selenium/standalone-firefox
|
|
USER root
|
|
|
|
RUN apt-get -y update
|
|
RUN apt-get -y install python3-pip
|
|
USER seluser
|
|
RUN python3 -m pip install helium --user
|
|
WORKDIR /home/seluser
|
|
ADD tests/* /home/seluser/
|
|
|
|
ENTRYPOINT [ "python3", "tests.py" ] |