tendermint/scripts/abci-builder/Dockerfile

13 lines
363 B
Docker
Raw Normal View History

2017-11-14 10:26:01 -08:00
FROM golang:1.9.2
2017-06-01 20:32:55 -07:00
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