OSDN Git Service

new repo
[bytom/vapor.git] / vendor / github.com / tendermint / abci / scripts / abci-builder / Dockerfile
1 FROM golang:1.7.4
2
3 RUN apt-get update && apt-get install -y --no-install-recommends \
4                 zip \
5         && rm -rf /var/lib/apt/lists/*
6
7 # We want to ensure that release builds never have any cgo dependencies so we
8 # switch that off at the highest level.
9 ENV CGO_ENABLED 0
10
11 RUN mkdir -p $GOPATH/src/github.com/tendermint/abci
12 WORKDIR $GOPATH/src/github.com/tendermint/abci