diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b1d928b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM archlinux +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/80.0.3987.16/chromedriver_linux64.zip | bsdtar -xvf - \ + && chmod -v +x chromedriver \ + && mkdir -pv /usr/local/bin \ + && mv -v chromedriver /usr/local/bin/ diff --git a/README.md b/README.md index 571a65f..98943a0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# docker-archlinux-rf +# docker-archlinux-rf [![Build Status](https://drone.dotya.ml/api/badges/wanderer/docker-archlinux-rf/status.svg?ref=refs/heads/master)](https://drone.dotya.ml/wanderer/docker-archlinux-rf) This repository provides the Dockerfile to create a Docker image used to run robotframework tests