Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-16 16:04:43 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-03-16 16:04:43 +0300
commitc204245b27c07e0425d19746a51c6066f3faa14c (patch)
tree407a331eb3b717f3411a99fa3d9a2d3d3a0649f5 /qa/Dockerfile
parentabb5f765c1e1affe0e132c86811e356e4a7008c9 (diff)
Speed up GitLab QA docker image builds
Diffstat (limited to 'qa/Dockerfile')
-rw-r--r--qa/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/qa/Dockerfile b/qa/Dockerfile
index 2814a7bdef0..72c82503542 100644
--- a/qa/Dockerfile
+++ b/qa/Dockerfile
@@ -8,7 +8,10 @@ RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list &&
WORKDIR /home/qa
-COPY ./ ./
+COPY ./Gemfile* ./
+
RUN bundle install
+COPY ./ ./
+
ENTRYPOINT ["bin/test"]