mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-05 06:45:27 +01:00
11 lines
193 B
Docker
11 lines
193 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
|
|
|
ADD operator /bin/operator
|
|
|
|
# On busybox 'nobody' has uid `65534'
|
|
USER 65534
|
|
|
|
ENTRYPOINT ["/bin/operator"]
|