From 6f74a981f3c7b92219eac3dde0ce57c04cf3e698 Mon Sep 17 00:00:00 2001 From: Kailas Mahavarkar <66670953+KailasMahavarkar@users.noreply.github.com> Date: Fri, 10 Apr 2026 17:42:06 +0530 Subject: [PATCH] fix(docker): add OCI source label to link image to repository org.opencontainers.image.source links the ghcr.io package to the orkait/hyperstack repo, allowing visibility to be managed from repo settings and ensuring the package appears under the repo's Packages tab. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 12dc5af..fbabcec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ FROM oven/bun:alpine +LABEL org.opencontainers.image.source="https://github.com/orkait/hyperstack" +LABEL org.opencontainers.image.description="Hyperstack MCP server" +LABEL org.opencontainers.image.licenses="MIT" WORKDIR /app COPY package.json bun.lock ./ RUN bun install --frozen-lockfile