cadvisor/Dockerfile

38 lines
1.6 KiB
Docker
Raw Normal View History

2021-02-09 22:07:34 +00:00
ARG ARCH
# STEP 1 build executable binary
FROM golang:1.17.0-alpine3.13@sha256:b766a0b208eccc923a05141b484dadab5025efd0f3f6d9bbaba68aac624f558d AS builder-amd64
FROM arm32v7/golang:1.17.0-alpine3.13@sha256:a159867ac35588460998ba44062db4e5613634da12437e50b6fa99c8d747d9a5 AS builder-arm
FROM arm64v8/golang:1.17.0-alpine3.13@sha256:2e4405967c4018a875f45df6c96d3007bb2ab4842d6553e7f49e746be3f52c5b AS builder-arm64
2021-02-09 22:07:34 +00:00
FROM builder-${ARCH} AS builder
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-08-13 04:01:04 +00:00
FROM alpine:3.14.1@sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae AS base-amd64
2021-08-06 19:00:30 +00:00
FROM arm32v7/alpine:3.14.1@sha256:fb9ac82b4cc94c5a6c416a1c656b3ee84df9290ab4106c260eb959997e759e5e AS base-arm
FROM arm64v8/alpine:3.14.1@sha256:bd9137c3bb45dbc40cde0f0e19a8b9064c2bc485466221f5e95eb72b0d0cf82e AS base-arm64
2021-02-09 22:07:34 +00:00
FROM base-${ARCH}
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"]