Spaces:
Running
Running
ADDITIVE: COPY live-wires files into image so /live-wires serves real 3D (szl_live_wires.py,live_wires.html,live_wires_3d.js)
Browse files- Dockerfile +9 -0
Dockerfile
CHANGED
|
@@ -50,6 +50,15 @@ COPY szl_dsse.py ./szl_dsse.py
|
|
| 50 |
COPY szl_provenance.py ./szl_provenance.py
|
| 51 |
COPY LEGAL_BOUNDARIES.md ./LEGAL_BOUNDARIES.md
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
ENV PORT=7860
|
| 54 |
EXPOSE 7860
|
| 55 |
|
|
|
|
| 50 |
COPY szl_provenance.py ./szl_provenance.py
|
| 51 |
COPY LEGAL_BOUNDARIES.md ./LEGAL_BOUNDARIES.md
|
| 52 |
|
| 53 |
+
|
| 54 |
+
# ADDITIVE (Yachay / Live 3D Wires, PURIQ Doctrine v12): COPY the live-wires
|
| 55 |
+
# module + host page + scene core so `import szl_live_wires` resolves in-container.
|
| 56 |
+
# Without these the register() call in the server silently fails and /live-wires
|
| 57 |
+
# falls through to the SPA shell. ADDITIVE ONLY. Sign: Yachay.
|
| 58 |
+
COPY szl_live_wires.py ./szl_live_wires.py
|
| 59 |
+
COPY live_wires.html ./live_wires.html
|
| 60 |
+
COPY live_wires_3d.js ./live_wires_3d.js
|
| 61 |
+
|
| 62 |
ENV PORT=7860
|
| 63 |
EXPOSE 7860
|
| 64 |
|