betterwithage commited on
Commit
992dce2
·
verified ·
1 Parent(s): cba9206

Wave23 instillation: COPY knowledge.json into image + updated corpus (Conjecture 2 conditional)

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -64,6 +64,15 @@ COPY packages/policy/src/gates /app/a11oy-src/packages/policy/src/gates
64
  # index.html + assets/* are served directly at / and /assets/*; unknown GET -> index.html.
65
  COPY console/ ./static/
66
 
 
 
 
 
 
 
 
 
 
67
  # Copy serve orchestrator and gates manifest
68
  COPY szl_parity_gaps.py ./szl_parity_gaps.py
69
  # ADDITIVE (live-ops): orchestration + AI-observability module — per-file COPY Dockerfile
 
64
  # index.html + assets/* are served directly at / and /assets/*; unknown GET -> index.html.
65
  COPY console/ ./static/
66
 
67
+ # Build cache-bust 2026-06-08T23:30Z (Wave23 instillation): knowledge.json was
68
+ # NEVER explicitly COPYed into the image, so /knowledge.json (SPA Formulas tab +
69
+ # /api/a11oy/v1/research/corpus) served a STALE in-layer copy. Pin it freshly into
70
+ # BOTH the static root (catch-all serves /app/static/knowledge.json) and /app root
71
+ # (research-corpus endpoint reads /app/knowledge.json). Wave23 = conditional Khipu
72
+ # BFT safety (Conjecture 2 conditional); locked-5 + Lambda Conjecture 1 UNCHANGED.
73
+ COPY knowledge.json ./static/knowledge.json
74
+ COPY knowledge.json ./knowledge.json
75
+
76
  # Copy serve orchestrator and gates manifest
77
  COPY szl_parity_gaps.py ./szl_parity_gaps.py
78
  # ADDITIVE (live-ops): orchestration + AI-observability module — per-file COPY Dockerfile