mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-30 17:22:13 +00:00
13 lines
375 B
Docker
13 lines
375 B
Docker
|
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
|