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.

41 lines
1002 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. # TODO: rewrite to only copy Makefile & other files?
  14. COPY . $REPO
  15. # Install the vendored dependencies
  16. # docker caching prevents reinstall on code change!
  17. RUN make get_tools
  18. RUN make get_vendor_deps
  19. # install ABCI CLI
  20. RUN make install_abci
  21. # install Tendermint
  22. RUN make install
  23. RUN tendermint testnet --node-dir-prefix="mach" --v=4 --populate-persistent-peers=false --o=$REPO/test/p2p/data
  24. # Now copy in the code
  25. # NOTE: this will overwrite whatever is in vendor/
  26. COPY . $REPO
  27. # expose the volume for debugging
  28. VOLUME $REPO
  29. EXPOSE 26656
  30. EXPOSE 26657