betterwithage commited on
Commit
4a181ab
·
verified ·
1 Parent(s): a83686a

fix(docker): COPY a11oy_warhacker_obs.py (per-file Dockerfile omitted it -> /warhacker + /observability 404)

Browse files

Module was in repo but not COPYed into image, so import failed silently and all warhacker/observability routes 404'd to the honest fallback. Signed-off-by: Stephen P. Lutar Jr. <stephenlutar2@gmail.com>

Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -66,6 +66,9 @@ COPY console/ ./static/
66
 
67
  # Copy serve orchestrator and gates manifest
68
  COPY szl_parity_gaps.py ./szl_parity_gaps.py
 
 
 
69
  COPY serve.py ./serve.py
70
  COPY gates_manifest.json ./gates_manifest.json
71
  # ADDITIVE: a11oy.code conversational orchestrator module (imported by serve.py).
 
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
70
+ # omitted it, so import a11oy_warhacker_obs failed and /warhacker + /observability 404'd.
71
+ COPY a11oy_warhacker_obs.py ./a11oy_warhacker_obs.py
72
  COPY serve.py ./serve.py
73
  COPY gates_manifest.json ./gates_manifest.json
74
  # ADDITIVE: a11oy.code conversational orchestrator module (imported by serve.py).