2020-03-17 17:23:19 +01:00
|
|
|
FROM archlinux:latest
|
2020-03-05 00:25:26 +01:00
|
|
|
|
2020-05-21 09:27:03 +02:00
|
|
|
ENV CHROMEDRIVER_VERSION="83.0.4103.39"
|
2020-05-10 17:13:15 +02:00
|
|
|
ENV SCREEN_WIDTH=1920
|
|
|
|
ENV SCREEN_HEIGHT=1080
|
|
|
|
ENV SCREEN_MAIN_DEPTH=24
|
|
|
|
ENV SCREEN_SUB_DEPTH=32
|
2020-03-11 20:00:47 +01:00
|
|
|
|
2020-03-16 14:28:10 +01:00
|
|
|
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" \
|
2020-03-17 04:42:05 +01:00
|
|
|
org.label-schema.vcs-ref=$VCS_REF \
|
|
|
|
org.label-schema.license=GPL-3.0
|
2020-03-16 14:28:10 +01:00
|
|
|
|
2020-03-16 15:52:37 +01:00
|
|
|
ADD https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip /tmp/chromedriver.zip
|
2020-03-16 14:28:10 +01:00
|
|
|
|
2020-03-17 03:03:03 +01:00
|
|
|
WORKDIR /tmp/
|
2020-05-28 15:48:36 +02:00
|
|
|
RUN pacman -Syu --noconfirm --needed python python-pip chromium wget vim findutils \
|
2020-05-11 03:01:38 +02:00
|
|
|
&& pip install robotframework robotframework-seleniumlibrary b2 \
|
2020-03-16 15:52:37 +01:00
|
|
|
&& bsdtar xfv /tmp/chromedriver.zip && rm -v /tmp/chromedriver.zip \
|
|
|
|
&& chmod -v +x /tmp/chromedriver \
|
2020-03-04 03:23:36 +01:00
|
|
|
&& mkdir -pv /usr/local/bin \
|
2020-05-11 03:01:38 +02:00
|
|
|
&& mv -v /tmp/chromedriver /usr/local/bin/
|
|
|
|
RUN pacman -Scc && rm -rf /var/cache/pacman/* /var/lib/pacman/sync/* \
|
|
|
|
&& rm -rf /usr/share/i18n/* ; rm -rf /usr/include/* ; \
|
|
|
|
find /. -name "*~" -type f -delete; \
|
|
|
|
find /usr/share/terminfo/. ! -name "*xterm*" ! -name "*screen*" ! -name "*screen*" -type f -delete;
|
2020-03-16 16:17:14 +01:00
|
|
|
WORKDIR /
|