Merge pull request #87 from compleatang/gmpindocker

add gmp so that docker images build correctly
This commit is contained in:
ebuchman 2015-06-03 14:40:05 -04:00
commit 7a57f1069c
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