Browse Source

[dockerfile] install psmisc for tests

pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
92801dbd72
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      Dockerfile.develop

+ 7
- 3
Dockerfile.develop 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/


Loading…
Cancel
Save