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.
|
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/tendermint
|
|
WORKDIR $GOPATH/src/github.com/tendermint/tendermint
|