cadvisor/Dockerfile
Renovate Bot f3afc7c1c2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
Update dependency google/cadvisor to v0.47.0
2023-05-07 23:39:13 +00:00

26 lines
1,002 B
Docker

# STEP 1 build executable binary
FROM golang:1.17.3-alpine3.13@sha256:33c95bc78fa434bae90c45d04e5a02612492acbb7118f35538a56ee0646c1bb7 AS builder
ENV CADVISOR_VERSION="v0.47.0"
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.17.2@sha256:69665d02cb32192e52e07644d76bc6f25abeb5410edc1c7a81a10ba3f0efb90a
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"]