Add image source label to dockerfiles
To get changelogs shown with Renovate a docker container has to add the source label described in the OCI Image Format Specification. For reference: https://github.com/renovatebot/renovate/blob/main/lib/modules/datasource/docker/readme.md Signed-off-by: Marc <github@wuast24.de>
This commit is contained in:
parent
e149260220
commit
217dbeaf7a
|
@ -2,6 +2,7 @@ ARG ARCH="amd64"
|
||||||
ARG OS="linux"
|
ARG OS="linux"
|
||||||
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
||||||
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
||||||
|
LABEL org.opencontainers.image.source="https://github.com/prometheus/alertmanager"
|
||||||
|
|
||||||
ARG ARCH="amd64"
|
ARG ARCH="amd64"
|
||||||
ARG OS="linux"
|
ARG OS="linux"
|
||||||
|
|
Loading…
Reference in New Issue