1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 06:45:27 +01:00
Files
prometheus-operator/Dockerfile
Nicolas Floquet 2964544396 Simplify multi-arch building. (#3035)
Default build is linux/amd64

For any other target:
OS=<os> ARCH=<arch> make
2020-02-26 19:23:51 +01:00

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"]