Browse Source

add Dockerfile

pull/456/head
Anton Kalyaev 8 years ago
committed by Anton Kaliaev
parent
commit
3af7c67757
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      Dockerfile

+ 13
- 0
Dockerfile View File

@ -0,0 +1,13 @@
FROM golang:latest
RUN curl https://glide.sh/get | sh
RUN mkdir -p /go/src/github.com/tendermint/go-p2p
WORKDIR /go/src/github.com/tendermint/go-p2p
COPY glide.yaml /go/src/github.com/tendermint/go-p2p/
COPY glide.lock /go/src/github.com/tendermint/go-p2p/
RUN glide install
COPY . /go/src/github.com/tendermint/go-p2p

Loading…
Cancel
Save