From cc62f2b3f8ea9d5bb497225dbacdee415ec284a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erwan=20Herv=C3=A9?= <62173453+Erwan-loot@users.noreply.github.com> Date: Tue, 14 Apr 2026 14:47:16 +0200 Subject: [PATCH] lifecycle/container: fix OCI image labels (#21574) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Dominic R Co-authored-by: Erwan Hervé Co-authored-by: Marc 'risson' Schmitt --- lifecycle/container/Dockerfile | 1 - lifecycle/container/ldap.Dockerfile | 1 - lifecycle/container/proxy.Dockerfile | 1 - lifecycle/container/rac.Dockerfile | 1 - lifecycle/container/radius.Dockerfile | 1 - website/Dockerfile | 9 +++++++++ 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/lifecycle/container/Dockerfile b/lifecycle/container/Dockerfile index 15927b6360..2d420ba758 100644 --- a/lifecycle/container/Dockerfile +++ b/lifecycle/container/Dockerfile @@ -155,7 +155,6 @@ LABEL org.opencontainers.image.authors="Authentik Security Inc." \ org.opencontainers.image.documentation="https://docs.goauthentik.io" \ org.opencontainers.image.licenses="https://github.com/goauthentik/authentik/blob/main/LICENSE" \ org.opencontainers.image.revision=${GIT_BUILD_HASH} \ - org.opencontainers.image.source="https://github.com/goauthentik/authentik" \ org.opencontainers.image.title="authentik server image" \ org.opencontainers.image.url="https://goauthentik.io" \ org.opencontainers.image.vendor="Authentik Security Inc." \ diff --git a/lifecycle/container/ldap.Dockerfile b/lifecycle/container/ldap.Dockerfile index a6fe3a0369..8bebfe02e1 100644 --- a/lifecycle/container/ldap.Dockerfile +++ b/lifecycle/container/ldap.Dockerfile @@ -42,7 +42,6 @@ LABEL org.opencontainers.image.authors="Authentik Security Inc." \ org.opencontainers.image.documentation="https://docs.goauthentik.io" \ org.opencontainers.image.licenses="https://github.com/goauthentik/authentik/blob/main/LICENSE" \ org.opencontainers.image.revision=${GIT_BUILD_HASH} \ - org.opencontainers.image.source="https://github.com/goauthentik/authentik" \ org.opencontainers.image.title="authentik LDAP outpost image" \ org.opencontainers.image.url="https://goauthentik.io" \ org.opencontainers.image.vendor="Authentik Security Inc." \ diff --git a/lifecycle/container/proxy.Dockerfile b/lifecycle/container/proxy.Dockerfile index 003f16a97a..a74604995a 100644 --- a/lifecycle/container/proxy.Dockerfile +++ b/lifecycle/container/proxy.Dockerfile @@ -62,7 +62,6 @@ LABEL org.opencontainers.image.authors="Authentik Security Inc." \ org.opencontainers.image.documentation="https://docs.goauthentik.io" \ org.opencontainers.image.licenses="https://github.com/goauthentik/authentik/blob/main/LICENSE" \ org.opencontainers.image.revision=${GIT_BUILD_HASH} \ - org.opencontainers.image.source="https://github.com/goauthentik/authentik" \ org.opencontainers.image.title="authentik proxy outpost image" \ org.opencontainers.image.url="https://goauthentik.io" \ org.opencontainers.image.vendor="Authentik Security Inc." \ diff --git a/lifecycle/container/rac.Dockerfile b/lifecycle/container/rac.Dockerfile index 94db58d559..d25a5dc854 100644 --- a/lifecycle/container/rac.Dockerfile +++ b/lifecycle/container/rac.Dockerfile @@ -42,7 +42,6 @@ LABEL org.opencontainers.image.authors="Authentik Security Inc." \ org.opencontainers.image.documentation="https://docs.goauthentik.io" \ org.opencontainers.image.licenses="https://github.com/goauthentik/authentik/blob/main/LICENSE" \ org.opencontainers.image.revision=${GIT_BUILD_HASH} \ - org.opencontainers.image.source="https://github.com/goauthentik/authentik" \ org.opencontainers.image.title="authentik RAC outpost image" \ org.opencontainers.image.url="https://goauthentik.io" \ org.opencontainers.image.vendor="Authentik Security Inc." \ diff --git a/lifecycle/container/radius.Dockerfile b/lifecycle/container/radius.Dockerfile index ab677cf54e..1a797f63d6 100644 --- a/lifecycle/container/radius.Dockerfile +++ b/lifecycle/container/radius.Dockerfile @@ -42,7 +42,6 @@ LABEL org.opencontainers.image.authors="Authentik Security Inc." \ org.opencontainers.image.documentation="https://docs.goauthentik.io" \ org.opencontainers.image.licenses="https://github.com/goauthentik/authentik/blob/main/LICENSE" \ org.opencontainers.image.revision=${GIT_BUILD_HASH} \ - org.opencontainers.image.source="https://github.com/goauthentik/authentik" \ org.opencontainers.image.title="authentik RADIUS outpost image" \ org.opencontainers.image.url="https://goauthentik.io" \ org.opencontainers.image.vendor="Authentik Security Inc." \ diff --git a/website/Dockerfile b/website/Dockerfile index bf74c56d51..98e8e6d36d 100644 --- a/website/Dockerfile +++ b/website/Dockerfile @@ -37,5 +37,14 @@ COPY ./SECURITY.md /work/ RUN corepack npm run build FROM docker.io/library/nginx:1.29-trixie@sha256:7f0adca1fc6c29c8dc49a2e90037a10ba20dc266baaed0988e9fb4d0d8b85ba0 +LABEL org.opencontainers.image.authors="Authentik Security Inc." \ + org.opencontainers.image.source="https://github.com/goauthentik/authentik" \ + org.opencontainers.image.description="authentik product documentation" \ + org.opencontainers.image.documentation="https://docs.goauthentik.io" \ + org.opencontainers.image.licenses="https://github.com/goauthentik/authentik/blob/main/LICENSE" \ + org.opencontainers.image.title="authentik docs image" \ + org.opencontainers.image.url="https://goauthentik.io" \ + org.opencontainers.image.vendor="Authentik Security Inc." + COPY --from=docs-builder /work/website/docs/build /usr/share/nginx/html