github.com/google/cadvisor@v0.49.1/deploy/canary/Dockerfile (about) 1 FROM golang:1.22 2 MAINTAINER dashpole@google.com 3 4 RUN apt-get update && apt-get install -y git dmsetup && apt-get clean 5 RUN git clone https://github.com/google/cadvisor.git /go/src/github.com/google/cadvisor 6 RUN cd /go/src/github.com/google/cadvisor && make 7 8 ENTRYPOINT ["/go/src/github.com/google/cadvisor/cadvisor"] 9