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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-01-15 13:21:18 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-01-15 13:21:18 +0300
commitbc6913de657e9ff76fcb4c88bb71d5a3b9e065cd (patch)
tree6534aa80788b15b8034cb85bb1e08f4e26379b12 /_support
parent7a9efe9fdd1dfb8a7db79b32a1673dfd8c523463 (diff)
Fix path to Gemfile in build image Dockerfile
Diffstat (limited to '_support')
-rw-r--r--_support/build-images/versioned/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/_support/build-images/versioned/Dockerfile b/_support/build-images/versioned/Dockerfile
index 856f92aa5..7b4c278ad 100644
--- a/_support/build-images/versioned/Dockerfile
+++ b/_support/build-images/versioned/Dockerfile
@@ -3,8 +3,8 @@ FROM registry.gitlab.com/gitlab-org/gitlab-build-images:${CUSTOM_IMAGE_VERSION}
RUN mkdir -p /bundle-cache
-COPY Gemfile /bundle-cache
-COPY Gemfile.lock /bundle-cache
+COPY ./ruby/Gemfile /bundle-cache
+COPY ./ruby/Gemfile.lock /bundle-cache
RUN DEBIAN_FRONTEND=noninteractive apt-get update -qq && \
DEBIAN_FRONTEND=noninteractive apt-get install -qq -y rubygems bundler cmake build-essential libicu-dev && \