Fixed TemplateNotFound error by adding missing templates directory
to the Docker image.
Error:
jinja2.exceptions.TemplateNotFound: index.html
Cause:
Dockerfile was not copying the templates/ directory into the container
Fix:
Added 'COPY templates/ ./templates/' to Dockerfile
The web application requires templates/ directory for Jinja2 templates:
- templates/base.html
- templates/index.html
- templates/items.html
- templates/users.html
- templates/llm.html
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
- Moved mkdocs.yml from web/docs/ to web/ directory
- Updated Dockerfile to copy mkdocs.yml and build from correct location
- Set docs_dir to 'docs' in mkdocs.yml configuration
- Fixes Docker build error where mkdocs couldn't find documentation files