https://github.com/tendermint/tendermint
Raw File
Tip revision: 73c19bd6ac367e1a4a473f56fea4cfdbe0a37039 authored by Tess Rinearson on 09 March 2020, 17:52:08 UTC
CONTRIBUTING: include instructions for installing protobuf
Tip revision: 73c19bd
Dockerfile.testing
FROM golang:latest

# Grab deps (jq, hexdump, xxd, killall)
RUN apt-get update && \
  apt-get install -y --no-install-recommends \
  jq bsdmainutils vim-common psmisc netcat

# Add testing deps for curl
RUN echo 'deb http://httpredir.debian.org/debian testing main non-free contrib' >> /etc/apt/sources.list && \
  apt-get update && \
  apt-get install -y --no-install-recommends curl

VOLUME /go

EXPOSE 26656
EXPOSE 26657
back to top