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:
authorPaul Okstad <pokstad@gitlab.com>2019-06-04 06:13:14 +0300
committerPaul Okstad <pokstad@gitlab.com>2019-06-04 06:13:14 +0300
commitd60ab635b5c1b5e98b3eae80718d225610f6e2f4 (patch)
tree6338baa0a8fb859d71011876e144ff573afcade6
parent9855c59db137a607a60366d1ad23a3834a2e9de7 (diff)
install rsync in dockerfilespo-install-rsync
-rw-r--r--Dockerfile2
-rw-r--r--_support/build-images/versioned/Dockerfile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 56ac98b8d..25d6a65ec 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,7 +17,7 @@ COPY ./ruby/Gemfile.lock /app/ruby/
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -qq && \
- apt-get install -qq -y rubygems bundler cmake build-essential libicu-dev && \
+ apt-get install -qq -y rubygems bundler cmake build-essential libicu-dev rsync && \
cd /app/ruby && bundle install --path vendor/bundle && \
rm -rf /var/lib/apt/lists/*
diff --git a/_support/build-images/versioned/Dockerfile b/_support/build-images/versioned/Dockerfile
index ca25a8dc6..cf1f6ab08 100644
--- a/_support/build-images/versioned/Dockerfile
+++ b/_support/build-images/versioned/Dockerfile
@@ -7,5 +7,5 @@ COPY ./Gemfile /bundle-cache
COPY ./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 && \
+ DEBIAN_FRONTEND=noninteractive apt-get install -qq -y rubygems bundler cmake build-essential libicu-dev rsync && \
cd /bundle-cache && bundle install --path vendor/bundle