ruvector/examples/vwm-viewer/Dockerfile
rUv 8c36eae2da feat(vwm-viewer): add hyper-realistic Super Bowl LX visualization
4D Gaussian splatting demo deployed to Cloud Run at
ruvector-vwm-875130704813.us-central1.run.app

- football.html: Patriots vs Seahawks with 4000+ gaussians/frame,
  ESPN-style scorebug, 5 camera modes, play simulation engine,
  particle effects, atmospheric fog, post-processing pipeline
- canvas-viewer.html: Canvas2D fallback for generic VWM viewing
- Dockerfile + nginx.conf: Cloud Run deployment config

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-08 22:39:31 +00:00

4 lines
107 B
Docker

FROM nginx:alpine
COPY . /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 8080