1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 15:46:31 +01:00
Files
prometheus-operator/Dockerfile
2023-09-26 16:59:00 +05:30

16 lines
497 B
Docker

ARG ARCH="amd64"
ARG OS="linux"
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
COPY operator /bin/operator
# On busybox 'nobody' has uid `65534'
USER 65534
LABEL org.opencontainers.image.source="https://github.com/prometheus-operator/prometheus-operator" \
org.opencontainers.image.url="https://prometheus-operator.dev/" \
org.opencontainers.image.documentation="https://prometheus-operator.dev/" \
org.opencontainers.image.licenses="Apache-2.0"
ENTRYPOINT ["/bin/operator"]