mirror of
https://github.com/tendermint/tendermint.git
synced 2026-07-20 06:52:30 +00:00
8ce588d984
fixes for tools repo merge (#1943)
13 lines
335 B
Docker
13 lines
335 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 get_tools
|
|
|
|
COPY . /go/src/github.com/tendermint/tendermint/tools/tm-bench
|
|
|
|
RUN make get_vendor_deps
|