mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
17 lines
326 B
Docker
17 lines
326 B
Docker
FROM ubuntu:bionic
|
|
|
|
RUN mkdir -p /consul-src/ui
|
|
|
|
RUN apt-get update -y && \
|
|
apt-get install --no-install-recommends -y -q \
|
|
build-essential \
|
|
git \
|
|
ruby \
|
|
ruby-dev \
|
|
zip \
|
|
zlib1g-dev && \
|
|
gem install bundler
|
|
|
|
WORKDIR /consul-src/ui
|
|
CMD make dist
|