From b8d3e46a9b2306a3aee0e97a45dbc4a522771175 Mon Sep 17 00:00:00 2001 From: giles Date: Fri, 6 Mar 2026 16:37:52 +0000 Subject: [PATCH] Fix rose-ash test Dockerfile: copy sxc directory The test app's bp/dashboard/routes.py imports from sxc.pages.renders but the Dockerfile wasn't copying the sxc directory into the image. Co-Authored-By: Claude Opus 4.6 --- test/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/test/Dockerfile b/test/Dockerfile index 1b8451e..ed8215d 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -28,6 +28,7 @@ COPY test/ ./test-app-tmp/ RUN cp -r test-app-tmp/app.py test-app-tmp/path_setup.py \ test-app-tmp/bp test-app-tmp/sx test-app-tmp/services \ test-app-tmp/runner.py test-app-tmp/__init__.py ./ 2>/dev/null || true && \ + ([ -d test-app-tmp/sxc ] && cp -r test-app-tmp/sxc ./ || true) && \ rm -rf test-app-tmp # Sibling models for cross-domain SQLAlchemy imports