51 lines
1.9 KiB
Docker
51 lines
1.9 KiB
Docker
FROM registry.gitlab.com/gitlab-org/gitlab-build-images/debian-bullseye-ruby-2.7:bundler-2.3-git-2.33-lfs-2.9-chrome-99-docker-20.10.14-gcloud-383-kubectl-1.23
|
|
LABEL maintainer="GitLab Quality Department <quality@gitlab.com>"
|
|
|
|
ENV DEBIAN_FRONTEND="noninteractive" \
|
|
BUNDLE_WITHOUT=development
|
|
|
|
##
|
|
# Install system libs
|
|
#
|
|
RUN apt-get update; \
|
|
apt-get install -y xvfb unzip; \
|
|
apt-get -yq autoremove; \
|
|
apt-get clean -yqq; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
##
|
|
# Install root certificate
|
|
#
|
|
RUN mkdir -p /usr/share/ca-certificates/gitlab
|
|
ADD ./qa/tls_certificates/authority/ca.crt /usr/share/ca-certificates/gitlab/
|
|
RUN echo 'gitlab/ca.crt' >> /etc/ca-certificates.conf
|
|
RUN chmod -R 644 /usr/share/ca-certificates/gitlab && update-ca-certificates
|
|
|
|
WORKDIR /home/gitlab/qa
|
|
|
|
##
|
|
# Install qa dependencies or fetch from cache if unchanged
|
|
#
|
|
COPY ./qa/Gemfile* /home/gitlab/qa/
|
|
RUN bundle install --jobs=$(nproc) --retry=3
|
|
|
|
##
|
|
# Fetch chromedriver based on version of chrome
|
|
# Copy rakefile first so that webdriver is not reinstalled on every code change
|
|
# https://github.com/titusfortner/webdrivers
|
|
#
|
|
COPY ./qa/tasks/webdrivers.rake /home/gitlab/qa/tasks/
|
|
RUN bundle exec rake -f tasks/webdrivers.rake webdrivers:chromedriver:update
|
|
|
|
COPY ./config/initializers/0_inject_enterprise_edition_module.rb /home/gitlab/config/initializers/
|
|
# Copy VERSION to ensure the COPY succeeds to copy at least one file since ee/app/models/license.rb isn't present in FOSS
|
|
# The [b] part makes ./ee/app/models/license.r[b] a pattern that is allowed to return no files (which is the case in FOSS)
|
|
COPY VERSION ./ee/app/models/license.r[b] /home/gitlab/ee/app/models/
|
|
COPY ./config/bundler_setup.rb /home/gitlab/config/
|
|
COPY ./lib/gitlab_edition.rb /home/gitlab/lib/
|
|
COPY ./lib/gitlab/utils.rb /home/gitlab/lib/gitlab/
|
|
COPY ./INSTALLATION_TYPE ./VERSION /home/gitlab/
|
|
|
|
COPY ./qa /home/gitlab/qa
|
|
|
|
ENTRYPOINT ["bin/test"]
|