mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
- in the makefile update `get_tools` was changed to just `tools` Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>
12 lines
306 B
Docker
12 lines
306 B
Docker
FROM golang:latest
|
|
|
|
RUN mkdir -p /go/src/github.com/tendermint/tendermint/tools/tm-bench
|
|
WORKDIR /go/src/github.com/tendermint/tendermint/tools/tm-bench
|
|
|
|
COPY Makefile /go/src/github.com/tendermint/tendermint/tools/tm-bench/
|
|
|
|
RUN make tools
|
|
|
|
COPY . /go/src/github.com/tendermint/tendermint/tools/tm-bench
|
|
|