File: Dockerfile

package info (click to toggle)
prometheus-apache-exporter 1.0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: sh: 52; makefile: 43
file content (12 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
ARG ARCH="amd64"
ARG OS="linux"
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
LABEL maintainer="https://github.com/Lusitaniae, https://github.com/roidelapluie"

ARG ARCH="amd64"
ARG OS="linux"
COPY .build/${OS}-${ARCH}/apache_exporter /bin/apache_exporter

EXPOSE      9117
USER        nobody
ENTRYPOINT  [ "/bin/apache_exporter" ]