From 0abee2f4e54ba76a01ae5a021dea5bbec79b9dac Mon Sep 17 00:00:00 2001 From: Louis King Date: Sun, 14 Jun 2026 22:20:58 +0100 Subject: [PATCH] fix(docker): correct OCI source label to ipnet-mesh/meshcore-hub The org.opencontainers.image.source label was pointing at meshcore-dev/meshcore-hub (the upstream MeshCore project's org) instead of this repo's canonical location at ipnet-mesh/meshcore-hub. Verify via: docker inspect ghcr.io/ipnet-mesh/meshcore-hub:main --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a314db2..6982101 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,7 +65,7 @@ FROM python:3.14-slim AS runtime # Labels LABEL org.opencontainers.image.title="MeshCore Hub" \ org.opencontainers.image.description="Python monorepo for managing MeshCore mesh networks" \ - org.opencontainers.image.source="https://github.com/meshcore-dev/meshcore-hub" + org.opencontainers.image.source="https://github.com/ipnet-mesh/meshcore-hub" # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 \