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.

12 lines
375 B

  1. FROM golang:1.9.0
  2. RUN apt-get update && apt-get install -y --no-install-recommends \
  3. zip \
  4. && rm -rf /var/lib/apt/lists/*
  5. # We want to ensure that release builds never have any cgo dependencies so we
  6. # switch that off at the highest level.
  7. ENV CGO_ENABLED 0
  8. RUN mkdir -p $GOPATH/src/github.com/tendermint/tendermint
  9. WORKDIR $GOPATH/src/github.com/tendermint/tendermint