mirror of
https://github.com/coreos/prometheus-operator.git
synced 2026-02-05 15:46:31 +01:00
* example/alertmanager-webhook: build image for amd64 and arm64 Closes #5012 Signed-off-by: Simon Pasquier <spasquie@redhat.com> * test/e2e: remove use of legacy coreos image Signed-off-by: Simon Pasquier <spasquie@redhat.com> Signed-off-by: Simon Pasquier <spasquie@redhat.com>
8 lines
140 B
Docker
8 lines
140 B
Docker
FROM scratch
|
|
|
|
ARG ARCH="amd64"
|
|
|
|
COPY linux/${ARCH}/alertmanager-webhook /bin/alertmanager-webhook
|
|
|
|
ENTRYPOINT ["/bin/alertmanager-webhook"]
|