From b129986078d022fca515381f0a27422b1dc45c4c Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 10 Feb 2026 00:24:19 +0000 Subject: [PATCH] fix: add bp symlink in Dockerfile for suma_browser.app.bp import path Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0078d5b..247bf8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,9 @@ RUN pip install -r requirements.txt COPY . . +# Link app blueprints into the shared library's namespace +RUN ln -s /app/bp /app/shared_lib/suma_browser/app/bp + # ---------- Runtime setup ---------- COPY entrypoint.sh /usr/local/bin/entrypoint.sh RUN chmod +x /usr/local/bin/entrypoint.sh