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.

38 lines
836 B

  1. FROM golang:1.10
  2. # Add testing deps for curl
  3. RUN echo 'deb http://httpredir.debian.org/debian testing main non-free contrib' >> /etc/apt/sources.list
  4. # Grab deps (jq, hexdump, xxd, killall)
  5. RUN apt-get update && \
  6. apt-get install -y --no-install-recommends \
  7. jq bsdmainutils vim-common psmisc netcat curl
  8. # Setup tendermint repo
  9. ENV REPO $GOPATH/src/github.com/tendermint/tendermint
  10. ENV GOBIN $GOPATH/bin
  11. WORKDIR $REPO
  12. # Copy in the code
  13. COPY . $REPO
  14. # Install the vendored dependencies
  15. # docker caching prevents reinstall on code change!
  16. RUN make get_tools
  17. RUN make get_vendor_deps
  18. # Now copy in the code
  19. # NOTE: this will overwrite whatever is in vendor/
  20. COPY . $REPO
  21. # install ABCI CLI
  22. RUN make install_abci
  23. # install Tendermint
  24. RUN make install
  25. # expose the volume for debugging
  26. VOLUME $REPO
  27. EXPOSE 26656
  28. EXPOSE 26657