1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-12 11:14:57 +02:00
dockerfiles/cadvisor/Dockerfile

24 lines
723 B
Docker
Raw Normal View History

2016-01-28 12:00:25 +02:00
#
# Dockerfile for cadvisor
#
2016-07-11 04:11:29 +02:00
FROM alpine:edge
2017-05-08 01:05:07 +02:00
MAINTAINER kev <noreply@easypi.pro>
2016-01-28 12:00:25 +02:00
2016-07-12 15:09:27 +02:00
ENV CADVISOR_VERSION 0.23.4
2016-01-28 12:00:25 +02:00
RUN set -xe \
2016-07-12 15:09:27 +02:00
&& apk add --no-cache ca-certificates openssl device-mapper zfs \
2016-07-11 04:11:29 +02:00
&& wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-2.23-r3.apk \
&& wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.23-r3/glibc-bin-2.23-r3.apk \
&& apk add --allow-untrusted glibc-2.23-r3.apk glibc-bin-2.23-r3.apk \
2016-07-12 15:09:27 +02:00
&& rm -f *.apk
2016-01-28 12:00:25 +02:00
RUN set -xe \
2016-07-12 15:09:27 +02:00
&& wget https://github.com/google/cadvisor/releases/download/v${CADVISOR_VERSION}/cadvisor -O /usr/bin/cadvisor \
2016-01-28 12:00:25 +02:00
&& chmod +x /usr/bin/cadvisor
EXPOSE 8080
2016-07-12 15:09:27 +02:00
ENTRYPOINT ["cadvisor", "-logtostderr"]