scripts for building

This commit is contained in:
Ethan Buchman
2017-06-01 23:32:55 -04:00
parent ea8c171bc0
commit b86da57571
5 changed files with 144 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM golang:1.7.4
RUN apt-get update && apt-get install -y --no-install-recommends \
zip \
&& rm -rf /var/lib/apt/lists/*
# We want to ensure that release builds never have any cgo dependencies so we
# switch that off at the highest level.
ENV CGO_ENABLED 0
RUN mkdir -p $GOPATH/src/github.com/tendermint/abci
WORKDIR $GOPATH/src/github.com/tendermint/abci