From 216e0ac8e4b43a5b9a1825e87bb72ece09ea3643 Mon Sep 17 00:00:00 2001 From: badcuban <108198679+badcuban@users.noreply.github.com> Date: Mon, 10 Aug 2026 15:25:00 -0400 Subject: [PATCH] Label the Docker image with its source repository OCI source/description/licenses labels link the GHCR package to the repo and describe it on the registry page. --- docker/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index a28f8a07d..15a740cf4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,6 +20,11 @@ RUN npm install -g --prefix /opt/threadlines "@threadlines/server@${THREADLINES_ FROM node:22-bookworm-slim +# Links the GHCR package to this repository and describes it on the registry. +LABEL org.opencontainers.image.source="https://github.com/Threadlines/threadlines" \ + org.opencontainers.image.description="Threadlines self-host server: orchestrate Claude Code and Codex from any device." \ + org.opencontainers.image.licenses="MIT" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \