Files
deardiary/Dockerfile.docs
lotherk 36474db276 feat: replace Starlight docs with simple HTML product website
- Removed docs/ (Starlight)
- Added www/ with pure HTML/CSS/JS landing page
- Product website with features, how it works, get started
- Basic HTML documentation pages (installation, quick start, AI providers)
- Dockerfile.docs now serves static files from www/
- Updated README and AGENTS.md
2026-03-27 10:42:22 +00:00

8 lines
99 B
Docker

FROM nginx:alpine
COPY www/ /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]