scripts for binaries

This commit is contained in:
Ethan Buchman
2017-04-26 01:38:11 -04:00
parent 3093cb8dc3
commit b84b369094
3 changed files with 120 additions and 0 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/basecoin
WORKDIR $GOPATH/src/github.com/tendermint/basecoin