github.com/google/cadvisor@v0.49.1/deploy/Dockerfile.ppc64le (about)

     1  FROM ppc64le/alpine:3.15
     2  MAINTAINER dashpole@google.com lysannef@us.ibm.com
     3  # Deprecated: the Dockerfile in this directory should support ppc64le
     4  # Simply build using: docker buildx build --platform linux/ppc64le -f Dockerfile .
     5  
     6  RUN apk --no-cache add libc6-compat device-mapper findutils zfs && \
     7      apk --no-cache add thin-provisioning-tools --repository http://dl-3.alpinelinux.org/alpine/edge/main/ && \
     8      echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
     9      rm -rf /var/cache/apk/*
    10  
    11  # Grab cadvisor from the staging directory.
    12  ADD cadvisor /usr/bin/cadvisor
    13  
    14  EXPOSE 8080
    15  
    16  HEALTHCHECK --interval=30s --timeout=3s \
    17    CMD wget --quiet --tries=1 --spider http://localhost:8080/healthz || exit 1
    18  
    19  ENTRYPOINT ["/usr/bin/cadvisor", "-logtostderr"]
    20