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:
authorBalasankar C <balasankar@gitlab.com>2017-12-14 14:35:53 +0300
committerAndrew Newdigate <andrew@gitlab.com>2017-12-14 14:35:53 +0300
commit354db2850d26c659f66fc63de013c22e016bc3f8 (patch)
tree7b779a2e1e2e7d7db17704f92654caa2fe265ea3 /_support
parentef268a9fad9fc7a1ee12e8672bf04f7f990fc5b5 (diff)
Add git 2.14 to the test matrix
Diffstat (limited to '_support')
-rw-r--r--_support/build-images/ruby-2.3-golang-1.8-git-2.14/Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/_support/build-images/ruby-2.3-golang-1.8-git-2.14/Dockerfile b/_support/build-images/ruby-2.3-golang-1.8-git-2.14/Dockerfile
new file mode 100644
index 000000000..2844a8a07
--- /dev/null
+++ b/_support/build-images/ruby-2.3-golang-1.8-git-2.14/Dockerfile
@@ -0,0 +1,10 @@
+FROM registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.3-golang-1.8-git-2.14
+
+RUN mkdir -p /bundle-cache
+
+COPY Gemfile /bundle-cache
+COPY Gemfile.lock /bundle-cache
+
+RUN apt-get update -qq && \
+ apt-get install -qq -y rubygems bundler cmake build-essential libicu-dev && \
+ cd /bundle-cache && bundle install --path vendor/bundle