a50951d73a
Ruby 2.6 offers better performance and memory usage: https://www.rubyguides.com/2018/11/ruby-2-6-new-features/ Part of https://gitlab.com/gitlab-org/gitlab-ce/issues/57323
55 lines
1.9 KiB
Docker
55 lines
1.9 KiB
Docker
FROM ruby:2.6-stretch
|
|
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
##
|
|
# Add support for stretch-backports
|
|
#
|
|
RUN echo "deb http://ftp.debian.org/debian stretch-backports main" >> /etc/apt/sources.list
|
|
|
|
##
|
|
# 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 unzip xvfb
|
|
|
|
##
|
|
# Install some packages from backports
|
|
#
|
|
RUN apt-get -y -t stretch-backports install git git-lfs
|
|
|
|
##
|
|
# 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
|
|
|
|
##
|
|
# 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
|
|
|
|
WORKDIR /home/qa
|
|
COPY ./Gemfile* ./
|
|
RUN bundle install
|
|
COPY ./ ./
|
|
|
|
ENTRYPOINT ["bin/test"]
|