Browse Source

fix Dockerfile.develop

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

+ 5
- 3
Dockerfile.develop 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/
COPY . /go/src/github.com/tendermint/abci
RUN make get_tools
RUN make get_vendor_deps
# see https://github.com/golang/dep/issues/1312
RUN dep ensure -vendor-only
COPY . /go/src/github.com/tendermint/abci

Loading…
Cancel
Save