From 5aea9d26785e80d27ca874bb57ef06977cd654c4 Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 25 Mar 2026 01:34:39 +0000 Subject: [PATCH] Fix sx_docs Dockerfile: copy integration_tests.ml for dune build Co-Authored-By: Claude Opus 4.6 (1M context) --- sx/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sx/Dockerfile b/sx/Dockerfile index 08a6bc83..02c5a5a7 100644 --- a/sx/Dockerfile +++ b/sx/Dockerfile @@ -9,7 +9,8 @@ WORKDIR /home/opam/sx COPY --chown=opam:opam hosts/ocaml/dune-project ./ COPY --chown=opam:opam hosts/ocaml/lib/ ./lib/ COPY --chown=opam:opam hosts/ocaml/bin/dune hosts/ocaml/bin/run_tests.ml \ - hosts/ocaml/bin/debug_set.ml hosts/ocaml/bin/sx_server.ml ./bin/ + hosts/ocaml/bin/debug_set.ml hosts/ocaml/bin/sx_server.ml \ + hosts/ocaml/bin/integration_tests.ml ./bin/ RUN dune build bin/sx_server.exe # --- Stage 2: Python app ---