Browse Source

add Dockerfile for development

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

+ 15
- 0
Dockerfile.develop View File

@ -0,0 +1,15 @@
FROM golang:latest
RUN mkdir -p /go/src/github.com/tendermint/abci
WORKDIR /go/src/github.com/tendermint/abci
COPY Makefile /go/src/github.com/tendermint/abci/
RUN make install_protoc
COPY glide.yaml /go/src/github.com/tendermint/abci/
COPY glide.lock /go/src/github.com/tendermint/abci/
RUN make get_vendor_deps
COPY . /go/src/github.com/tendermint/abci

Loading…
Cancel
Save