# STEP 1 build executable binary
FROM golang:1.17.3-alpine3.13@sha256:07674a997a6ece514c1397c44b1d6cc45b9ade6ba9acb1d3c6072537c4cf82f1 AS builder

ENV CADVISOR_VERSION="v0.38.8"

WORKDIR $GOPATH/src/github.com/google/cadvisor

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

# STEP 2 build the image including only the binary
FROM alpine:3.14.2@sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a

RUN apk upgrade --no-cache && apk add libc6-compat device-mapper findutils zfs \
 && rm -rf /var/cache/apk/*

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"]