fix Dockerfile.develop

This commit is contained in:
Anton Kaliaev 2018-02-27 17:31:54 +04:00
parent 3d5f0a8b94
commit c57ab8724e
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 6 additions and 4 deletions

View File

@ -6,7 +6,7 @@ WORKDIR /go/src/github.com/tendermint/abci
COPY Makefile /go/src/github.com/tendermint/abci/
# see make protoc for details on ldconfig
RUN make install_protoc && ldconfig
RUN make get_protoc && ldconfig
# killall is used in tests
RUN apt-get update && apt-get install -y \
@ -15,7 +15,9 @@ RUN apt-get update && apt-get install -y \
COPY Gopkg.toml /go/src/github.com/tendermint/abci/
COPY Gopkg.lock /go/src/github.com/tendermint/abci/
RUN make get_tools
# see https://github.com/golang/dep/issues/1312
RUN dep ensure -vendor-only
COPY . /go/src/github.com/tendermint/abci
RUN make get_vendor_deps