From 93ce4f81b6a18e2c68cf452d5e6c61ecb3235242 Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 20 Sep 2025 10:57:05 -0400 Subject: [PATCH] Make sure Cargo.toml included in Rust backend test container --- backend/Dockerfile.test-rust | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile.test-rust b/backend/Dockerfile.test-rust index 9c8dfcf..b01ecc7 100644 --- a/backend/Dockerfile.test-rust +++ b/backend/Dockerfile.test-rust @@ -27,6 +27,6 @@ RUN cargo test --workspace --locked --no-run # Runner: minimal runtime for test execution FROM base AS runner -COPY --from=test-build /app/target /app/target +COPY --from=test-build /app /app WORKDIR /app CMD ["cargo", "test", "--workspace", "--locked", "--", "--test-threads=1"] \ No newline at end of file