From 41b4e0fe247009f34fc053144c4ba7335031c202 Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 11 Feb 2026 01:08:09 +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 247bf8f..2fd36c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ 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 +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