36 lines
1.2 KiB
Docker
36 lines
1.2 KiB
Docker
FROM ruby:2.4
|
|
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
##
|
|
# 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
|
|
|
|
##
|
|
# Install Docker
|
|
#
|
|
RUN wget -q https://download.docker.com/linux/static/stable/x86_64/docker-17.09.0-ce.tgz && \
|
|
tar -zxf docker-17.09.0-ce.tgz && mv docker/docker /usr/local/bin/docker && \
|
|
rm docker-17.09.0-ce.tgz
|
|
|
|
##
|
|
# Install Google Chrome version with headless support
|
|
#
|
|
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 && apt-get install -y google-chrome-stable && apt-get clean
|
|
|
|
##
|
|
# Install chromedriver to make it work with Selenium
|
|
#
|
|
RUN wget -q https://chromedriver.storage.googleapis.com/$(wget -q -O - https://chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip
|
|
RUN unzip chromedriver_linux64.zip -d /usr/local/bin
|
|
|
|
WORKDIR /home/qa
|
|
COPY ./Gemfile* ./
|
|
RUN bundle install
|
|
COPY ./ ./
|
|
|
|
ENTRYPOINT ["bin/test"]
|