TheEdict commited on
Commit
7b139d3
·
verified ·
1 Parent(s): b907fbc

Fix Dockerfile path for static/index.html

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -43,7 +43,10 @@ COPY omniroute-accounts.json /app/.omniroute/accounts.json
43
  COPY marimo_sandbox.py /app/marimo_sandbox.py
44
 
45
  # 8. Copy Static UI
46
- COPY marimo-zero-ui.html /app/static/index.html
 
 
 
47
  COPY nginx.conf /etc/nginx/nginx.conf
48
 
49
  # 9. Copy Proxy Server (routes all ports through 7860)
 
43
  COPY marimo_sandbox.py /app/marimo_sandbox.py
44
 
45
  # 8. Copy Static UI
46
+ # marimo-zero-ui.html is copied to /app/static/index.html by deploy script
47
+ # We just need to ensure the static directory exists
48
+ RUN mkdir -p /app/static
49
+ COPY static/index.html /app/static/index.html
50
  COPY nginx.conf /etc/nginx/nginx.conf
51
 
52
  # 9. Copy Proxy Server (routes all ports through 7860)