aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJohannes Würbach <johannes.wuerbach@googlemail.com>2019-04-15 17:36:25 +0200
committerBen Kochie <superq@gmail.com>2019-04-15 17:36:25 +0200
commit4e5c4d464fa67e9cdfd9858d2151bc99603b2bff (patch)
tree2036049ad82104e2e1f45ff791a15e77a0e7ad8a /Dockerfile
parente71e9f5a2fea95f19f7740c8c97861bb6ef94337 (diff)
downloadprometheus_node_collector-4e5c4d464fa67e9cdfd9858d2151bc99603b2bff.tar.bz2
prometheus_node_collector-4e5c4d464fa67e9cdfd9858d2151bc99603b2bff.tar.xz
prometheus_node_collector-4e5c4d464fa67e9cdfd9858d2151bc99603b2bff.zip
Docker images for ARM32v7, ARM64v8 and ppc64le (#1207)
Build and publish ARM32v7, ARM64v8 and ppc64le docker images. Signed-off-by: Johannes Würbach <johannes.wuerbach@googlemail.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 383e6ef..57844bd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,11 @@
1FROM quay.io/prometheus/busybox:glibc 1ARG ARCH="amd64"
2ARG OS="linux"
3FROM quay.io/prometheus/busybox-${OS}-${ARCH}:glibc
2LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>" 4LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
3 5
4COPY node_exporter /bin/node_exporter 6ARG ARCH="amd64"
7ARG OS="linux"
8COPY .build/${OS}-${ARCH}/node_exporter /bin/node_exporter
5 9
6EXPOSE 9100 10EXPOSE 9100
7USER nobody 11USER nobody