From 5053448ee2c94fb3b56ec6f0d898c08a38f108fb Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 11 Feb 2026 01:08:05 +0000 Subject: [PATCH] fix: remove existing bp dir before symlinking in Dockerfile Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0342f81..21e4802 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ COPY . . COPY --from=editor-build /static/scripts/editor.js /static/scripts/editor.css shared_lib/static/scripts/ # Link app blueprints into the shared library's namespace -RUN ln -s /app/bp /app/shared_lib/suma_browser/app/bp +RUN rm -rf /app/shared_lib/suma_browser/app/bp && ln -s /app/bp /app/shared_lib/suma_browser/app/bp # ---------- Runtime setup ---------- COPY entrypoint.sh /usr/local/bin/entrypoint.sh