From fcc0afab6a19dc6d7ce77d05445aae82c5cb0f61 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 12 May 2026 10:44:45 +0200 Subject: [PATCH] feat: add metadata --- Dockerfile.linux.amd64 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile.linux.amd64 b/Dockerfile.linux.amd64 index 443b16c..04d679b 100644 --- a/Dockerfile.linux.amd64 +++ b/Dockerfile.linux.amd64 @@ -1,5 +1,9 @@ FROM alpine:3.23 +LABEL org.opencontainers.image.title="Yamllint container for pipelines" +LABEL org.opencontainers.image.vendor="Simon Cornet" +LABEL org.opencontainers.image.source="https://git.simoncor.net/oci/yamllint" + RUN apk add --no-cache \ python3 \ py3-pip && \