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:
authorAndrew Newdigate <andrew@gitlab.com>2017-08-09 19:44:40 +0300
committerJacob Vosmaer (GitLab) <jacob@gitlab.com>2017-08-09 19:44:40 +0300
commitd8e2f058d8dddd4917efe175ec98aed311739402 (patch)
tree12e05e7c48cb5e76247dae1c7af93bd99055afd8 /_support
parentb0fed539ca79a7d352bff74c588991cd6815ab49 (diff)
New build image
Diffstat (limited to '_support')
-rw-r--r--_support/build-images/ruby-2.3-golang-1.8-git-2.13/Dockerfile10
-rw-r--r--_support/build-images/ruby-2.3-golang-1.8-git-2.8/Dockerfile (renamed from _support/build-images/golang-1.8-git-2.8.4/Dockerfile)2
2 files changed, 11 insertions, 1 deletions
diff --git a/_support/build-images/ruby-2.3-golang-1.8-git-2.13/Dockerfile b/_support/build-images/ruby-2.3-golang-1.8-git-2.13/Dockerfile
new file mode 100644
index 000000000..126b418e3
--- /dev/null
+++ b/_support/build-images/ruby-2.3-golang-1.8-git-2.13/Dockerfile
@@ -0,0 +1,10 @@
+FROM registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.3-golang-1.8-git-2.13
+
+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
diff --git a/_support/build-images/golang-1.8-git-2.8.4/Dockerfile b/_support/build-images/ruby-2.3-golang-1.8-git-2.8/Dockerfile
index 0a936662d..0630900c5 100644
--- a/_support/build-images/golang-1.8-git-2.8.4/Dockerfile
+++ b/_support/build-images/ruby-2.3-golang-1.8-git-2.8/Dockerfile
@@ -1,4 +1,4 @@
-FROM registry.gitlab.com/gitlab-org/gitlab-build-images:golang-1.8-git-2.8.4
+FROM registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.3-golang-1.8-git-2.8
RUN mkdir -p /bundle-cache