Dockerfile 1.01 KB
Newer Older
1 2 3
FROM ruby:2.3
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"

4
ENV CHROME_VERSION 59.0.3071.109-1
5
ENV CHROME_DRIVER_VERSION 2.30
6

7 8 9 10 11 12 13
##
# Update APT sources and install some dependencies
#
RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list
RUN apt-get update && apt-get install -y wget git unzip xvfb

##
14
# Install Google Chrome version with headless support
15
#
16 17 18
RUN curl -sS -L https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list
RUN apt-get update -q && DEBIAN_FRONTEND=noninteractive apt-get install -y google-chrome-stable=$CHROME_VERSION
19 20 21 22

##
# Install chromedriver to make it work with Selenium
#
23
RUN wget -q https://chromedriver.storage.googleapis.com/$CHROME_DRIVER_VERSION/chromedriver_linux64.zip
24 25 26
RUN unzip chromedriver_linux64.zip -d /usr/local/bin

RUN apt-get clean
27 28 29

WORKDIR /home/qa

30 31
COPY ./Gemfile* ./

32 33
RUN bundle install

34 35
COPY ./ ./

36
ENTRYPOINT ["bin/test"]