You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
364 B

8 years ago
8 years ago
8 years ago
  1. FROM golang:latest
  2. RUN curl https://glide.sh/get | sh
  3. RUN mkdir -p /go/src/github.com/tendermint/tendermint/p2p
  4. WORKDIR /go/src/github.com/tendermint/tendermint/p2p
  5. COPY glide.yaml /go/src/github.com/tendermint/tendermint/p2p/
  6. COPY glide.lock /go/src/github.com/tendermint/tendermint/p2p/
  7. RUN glide install
  8. COPY . /go/src/github.com/tendermint/tendermint/p2p