update consul with ui deps

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-12-28 14:45:03 -08:00
parent bd9cdb6ff1
commit ce501b258c
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -16,9 +16,13 @@ RUN buildDeps=' \
go \
git \
gcc \
g++ \
libc-dev \
libgcc \
make \
nodejs \
ruby \
ruby-dev \
zip \
' \
set -x \
@ -32,6 +36,8 @@ RUN buildDeps=' \
&& make all \
&& mv bin/consul /usr/bin/ \
&& cd ui \
&& gem install bundler io-console --no-ri --no-rdoc \
&& bundle install \
&& make dist \
&& mv dist /usr/src/ \
&& apk del $buildDeps \