From 9c4e67111c5dca813575c848d72ee80617377d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Thu, 20 Jun 2024 19:29:18 +0200 Subject: [PATCH] ci: Add opencontainer image spec labels to the release Dockerfile (no-changelog) (#9822) Co-authored-by: Nikolai T. Jensen <32718507+ch0wm3in@users.noreply.github.com> --- docker/images/n8n/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docker/images/n8n/Dockerfile b/docker/images/n8n/Dockerfile index d26c8c34d8..2da1bc1f47 100644 --- a/docker/images/n8n/Dockerfile +++ b/docker/images/n8n/Dockerfile @@ -4,6 +4,12 @@ FROM n8nio/base:${NODE_VERSION} ARG N8N_VERSION RUN if [ -z "$N8N_VERSION" ] ; then echo "The N8N_VERSION argument is missing!" ; exit 1; fi +LABEL org.opencontainers.image.title="n8n" +LABEL org.opencontainers.image.description="Workflow Automation Tool" +LABEL org.opencontainers.image.source="https://github.com/n8n-io/n8n" +LABEL org.opencontainers.image.url="https://n8n.io" +LABEL org.opencontainers.image.version=${N8N_VERSION} + ENV N8N_VERSION=${N8N_VERSION} ENV NODE_ENV=production ENV N8N_RELEASE_TYPE=stable