updated Dockerfile
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2020-03-16 14:28:10 +01:00
parent bc267f58db
commit cd84a7fa24
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

View File

@ -2,11 +2,24 @@ FROM archlinux/base
ENV CHROMEDRIVER_VERSION="80.0.3987.106"
RUN pacman -Syu --noconfirm --needed python python-pip wget tar chromium \
ARG BUILD_DATE
ARG VCS_REF
LABEL description="Docker image for running tests using robot framework."
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.vcs-url="https://github.com/wULLSnpAXbWZGYDYyhWTKKspEQoaYxXyhoisqHf/docker-archlinux-rf.git" \
org.label-schema.vcs-ref=$VCS_REF
ADD https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip ./chromedriver.zip
RUN pacman -Syu --noconfirm --needed python python-pip 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 \
RUN pip install robotframework robotframework-seleniumlibrary \
&& bsdtar xfv ./chromedriver.zip && rm -v ./chromedriver.zip \
&& chmod -v +x ./chromedriver \
&& mkdir -pv /usr/local/bin \
&& mv -v chromedriver /usr/local/bin/
&& mv -v ./chromedriver /usr/local/bin/