[prometheus-node-exporter-armv7] Initial commit

This commit is contained in:
drymer 2019-03-17 19:35:11 +01:00
parent 93a9c819e3
commit 1bfb0165fa
Signed by: drymer
GPG Key ID: A307D64D5DDFDAAD
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
FROM alpine:3.7 as build
RUN apk add -U git && wget \
https://github.com/prometheus/node_exporter/releases/download/v0.17.0/node_exporter-0.17.0.linux-armv7.tar.gz \
&& tar xzf node_exporter-0.17.0.linux-armv7.tar.gz
FROM quay.io/prometheus/busybox:glibc
EXPOSE 9100
USER nobody
COPY --from=build /node_exporter-0.17.0.linux-armv7/node_exporter /bin/
ENTRYPOINT ["/bin/node_exporter"]