betterwithage commited on
Commit
ac45d55
·
verified ·
1 Parent(s): 60c64d3

fix(a11oy): COPY szl_wave910_proofs.py into image (per-file Dockerfile) so /proven-formulas + proven/* + governance matrix-health resolve

Browse files

Dockerfile uses per-file COPY (no COPY . .); the new Wave9/10 module was committed to the repo but not copied into the image, so its routes 404 to the SPA and matrix-health reported the module missing. Add the COPY line.

Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile CHANGED
@@ -404,6 +404,17 @@ COPY szl_consensus_clusters.py ./szl_consensus_clusters.py
404
  COPY szl_mission_ledger.py ./szl_mission_ledger.py
405
  COPY szl_budget_router.py ./szl_budget_router.py
406
 
 
 
 
 
 
 
 
 
 
 
 
407
  CMD ["python", "serve.py"]
408
 
409
 
 
404
  COPY szl_mission_ledger.py ./szl_mission_ledger.py
405
  COPY szl_budget_router.py ./szl_budget_router.py
406
 
407
+ # ADDITIVE (WAVE9/10 INSTILLATION, 2026-06): the "Proven Formulas (experimental)"
408
+ # surface wiring a11oy-targeted lutar-lean Wave9+Wave10 theorems as honest cards with
409
+ # verbatim #print axioms + real in-image checks (Gershgorin matrix-health, Ville
410
+ # anytime-alarm, replay-determinism+tamper-localize, quorum-intersection, DSSE
411
+ # injectivity). Stdlib-only (no torch/numpy/CDN). Per-file COPY (this Dockerfile never
412
+ # uses `COPY . .`) -- without this the import fails and /proven-formulas +
413
+ # /api/a11oy/v1/proven/* fall through to the SPA shell, and the governance-gateway
414
+ # matrix-health pre-flight reports the module missing. serve.py + szl_governance_gateway
415
+ # import it try/except-guarded. LOCKED-proven stays EXACTLY 5; Lambda=Conjecture 1.
416
+ COPY szl_wave910_proofs.py ./szl_wave910_proofs.py
417
+
418
  CMD ["python", "serve.py"]
419
 
420