add gmp so that docker images build correctly

This commit is contained in:
Casey Kuhlman 2015-06-03 20:32:22 +02:00
parent 6062b06aa9
commit a0d781bdd8
1 changed files with 7 additions and 2 deletions

View File

@ -8,6 +8,11 @@ ENV DEBCONF_NOWARNINGS yes
ENV TERM linux
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libgmp3-dev && \
rm -rf /var/lib/apt/lists/*
# Install go
# ADD tendermint user
RUN useradd tendermint