From f6989e63263d91aa1a073955c26af3cebd804afc 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 24a6a21dfc..41f39af44c 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