File: Dockerfile

package info (click to toggle)
prometheus-phpfpm-exporter 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: sh: 52; makefile: 35; php: 23
file content (12 lines) | stat: -rw-r--r-- 305 bytes parent folder | download
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"

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

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