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

View File

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