diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-16 14:04:43 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2017-03-16 14:04:43 +0100 |
commit | c204245b27c07e0425d19746a51c6066f3faa14c (patch) | |
tree | 407a331eb3b717f3411a99fa3d9a2d3d3a0649f5 /qa/Dockerfile | |
parent | abb5f765c1e1affe0e132c86811e356e4a7008c9 (diff) | |
download | gitlab-ce-c204245b27c07e0425d19746a51c6066f3faa14c.tar.gz |
Speed up GitLab QA docker image buildsfeature/gb/speed-up-gitlab-qa-docker-image-builds
Diffstat (limited to 'qa/Dockerfile')
-rw-r--r-- | qa/Dockerfile | 5 |
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"] |