[dockerfile] install psmisc for tests

This commit is contained in:
Anton Kaliaev 2017-11-20 18:30:10 -06:00
parent fc7db13fa8
commit 92801dbd72
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 7 additions and 3 deletions

View File

@ -5,9 +5,13 @@ WORKDIR /go/src/github.com/tendermint/abci
COPY Makefile /go/src/github.com/tendermint/abci/
RUN make install_protoc
# see make protoc for details
RUN ldconfig
# see make protoc for details on ldconfig
RUN make install_protoc && ldconfig
# killall is used in tests
RUN apt-get update && apt-get install -y \
psmisc \
&& rm -rf /var/lib/apt/lists/*
COPY glide.yaml /go/src/github.com/tendermint/abci/
COPY glide.lock /go/src/github.com/tendermint/abci/