debian-mirror-gitlab/qa/Dockerfile

56 lines
1.9 KiB
Docker
Raw Normal View History

2019-02-15 15:39:39 +05:30
FROM ruby:2.5-stretch
2017-08-17 22:00:37 +05:30
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
2017-09-10 17:25:29 +05:30
ENV DEBIAN_FRONTEND noninteractive
2017-08-17 22:00:37 +05:30
2018-12-13 13:39:08 +05:30
##
# Add support for stretch-backports
#
RUN echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list
2017-08-17 22:00:37 +05:30
##
# Update APT sources and install some dependencies
#
RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list
2018-12-13 13:39:08 +05:30
RUN apt-get update && apt-get install -y wget unzip xvfb
##
# Install some packages from backports
#
RUN apt-get -y -t stretch-backports install git git-lfs
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
##
# 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
2017-08-17 22:00:37 +05:30
##
2017-09-10 17:25:29 +05:30
# Install Google Chrome version with headless support
2017-08-17 22:00:37 +05:30
#
2017-09-10 17:25:29 +05:30
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
2017-08-17 22:00:37 +05:30
##
# Install chromedriver to make it work with Selenium
#
2017-09-10 17:25:29 +05:30
RUN wget -q https://chromedriver.storage.googleapis.com/$(wget -q -O - https://chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip
2017-08-17 22:00:37 +05:30
RUN unzip chromedriver_linux64.zip -d /usr/local/bin
2018-11-08 19:23:39 +05:30
##
# Install gcloud and kubectl CLI used in Auto DevOps test to create K8s
# clusters
#
RUN export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)" && \
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list && \
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && \
apt-get update -y && apt-get install google-cloud-sdk kubectl -y
2017-08-17 22:00:37 +05:30
WORKDIR /home/qa
COPY ./Gemfile* ./
RUN bundle install
COPY ./ ./
ENTRYPOINT ["bin/test"]