From 119e905ffb3628dafe93908f640a15533a586992 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 14 Jun 2018 09:59:10 -0700 Subject: [PATCH] Add rsync to consul-builder The V2 UI build now requires `rsync` to be installed as part of its build process. Without this, `make ui` will fail today. --- scripts/consul-builder/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/consul-builder/Dockerfile b/scripts/consul-builder/Dockerfile index 24a6a21df..41f39af44 100644 --- a/scripts/consul-builder/Dockerfile +++ b/scripts/consul-builder/Dockerfile @@ -13,7 +13,8 @@ RUN apt-get update -y && \ zip \ zlib1g-dev \ nodejs \ - npm && \ + npm \ + rsync && \ gem install bundler && \ npm install --global yarn && \ npm install --global ember-cli