chainlink_exporter/Dockerfile

13 lines
167 B
Docker
Raw Normal View History

2020-01-23 14:09:21 -08:00
FROM golang:stretch as builder
COPY . /opt
WORKDIR /opt
RUN make build
FROM scratch
COPY --from=builder /opt/bin/chainlink_exporter /
CMD ["/chainlink_exporter"]