betterwithage commited on
Commit
ef34f33
·
verified ·
1 Parent(s): 4e98821

Dockerfile: COPY a11oy_code_ide.html into /app so orchestrator GET /api/a11oy/code/ide serves the self-contained IDE page (was 404: per-file COPY Dockerfile had no copy line for the IDE)

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -84,6 +84,10 @@ COPY szl_b2_secdata.py ./szl_b2_secdata.py
84
  COPY gates_manifest.json ./gates_manifest.json
85
  # ADDITIVE: a11oy.code conversational orchestrator module (imported by serve.py).
86
  COPY a11oy_code_orchestrator.py ./a11oy_code_orchestrator.py
 
 
 
 
87
  # ADDITIVE (WAYRA organ): explicit per-file COPY (this Dockerfile does not use COPY . .).
88
  # serve.py mounts wayra_serve.router -> /wayra, /wayra-digest, /api/a11oy/v1/wayra/*.
89
  COPY wayra_serve.py ./wayra_serve.py
 
84
  COPY gates_manifest.json ./gates_manifest.json
85
  # ADDITIVE: a11oy.code conversational orchestrator module (imported by serve.py).
86
  COPY a11oy_code_orchestrator.py ./a11oy_code_orchestrator.py
87
+ # ADDITIVE: a11oy Code IDE page (served by orchestrator GET /api/a11oy/code/ide as a
88
+ # sibling of a11oy_code_orchestrator.py). Self-contained (vendored CodeMirror, 0 runtime
89
+ # CDN). Explicit per-file COPY (this Dockerfile does not use `COPY . .`).
90
+ COPY a11oy_code_ide.html ./a11oy_code_ide.html
91
  # ADDITIVE (WAYRA organ): explicit per-file COPY (this Dockerfile does not use COPY . .).
92
  # serve.py mounts wayra_serve.router -> /wayra, /wayra-digest, /api/a11oy/v1/wayra/*.
93
  COPY wayra_serve.py ./wayra_serve.py