cadvisor/Dockerfile

30 lines
1 KiB
Docker
Raw Normal View History

2021-02-09 22:07:34 +00:00
# STEP 1 build executable binary
2021-11-04 21:29:02 +00:00
FROM golang:1.17.1-alpine3.13@sha256:bd3c3710755f637c6ec64b317a22e58f048ddefe622fb03073935ee9073ff99f AS builder
2021-02-09 22:07:34 +00:00
ENV CADVISOR_VERSION="v0.38.8"
2021-02-09 22:07:34 +00:00
WORKDIR $GOPATH/src/github.com/google/cadvisor
2021-06-24 21:23:28 +00:00
RUN apk upgrade --no-cache \
&& apk add libc6-compat device-mapper findutils zfs build-base linux-headers bash git wget curl tar \
&& curl -L "https://github.com/google/cadvisor/archive/${CADVISOR_VERSION}.tar.gz" | tar xvz --strip 1 \
&& ./build/build.sh
2021-02-09 22:07:34 +00:00
# STEP 2 build the image including only the binary
2021-11-04 21:21:59 +00:00
FROM alpine:3.14.2@sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a
2021-02-09 22:07:34 +00:00
RUN apk upgrade --no-cache && apk add \
2021-06-24 19:01:06 +00:00
libc6-compat="1.2.2-r3" \
2021-02-09 22:07:34 +00:00
device-mapper="2.02.187-r1" \
2021-06-24 19:01:06 +00:00
findutils="4.8.0-r1" \
2021-06-24 21:23:28 +00:00
zfs="2.0.3-r1" \
&& rm -rf /var/cache/apk/*
2021-02-09 22:07:34 +00:00
COPY --from=builder /go/src/github.com/google/cadvisor/cadvisor /usr/bin/cadvisor
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s CMD wget --quiet --tries=1 --spider http://127.0.0.1:8080/healthz || exit 1
ENTRYPOINT ["/usr/bin/cadvisor", "-logtostderr"]