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