All checks were successful
continuous-integration/drone/push Build is passing
* also updated notification message format
13 lines
524 B
Docker
13 lines
524 B
Docker
FROM archlinux/base
|
|
|
|
ENV CHROMEDRIVER_VERSION="80.0.3987.106"
|
|
|
|
RUN pacman -Syu --noconfirm --needed python python-pip wget tar chromium \
|
|
&& pacman -Scc \
|
|
&& rm -rfv /var/cache/pacman/* /var/lib/pacman/sync/* \
|
|
&& pip install robotframework robotframework-seleniumlibrary \
|
|
&& wget -qO- https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip | bsdtar -xvf - \
|
|
&& chmod -v +x chromedriver \
|
|
&& mkdir -pv /usr/local/bin \
|
|
&& mv -v chromedriver /usr/local/bin/
|