Files
legal-ai/.dockerignore
Chaim 36925c589b
All checks were successful
Build & Deploy / build-and-deploy (push) Successful in 8s
Ship decision_template.docx into the Docker image
The analysis DOCX exporter loads skills/docx/decision_template.docx at
runtime, but .dockerignore was excluding the entire skills/ tree and
Dockerfile didn't COPY it — so the deployed container returned
'Template not found at /app/skills/docx/decision_template.docx' on
every /export-docx request.

  .dockerignore  Re-include the one file we need at runtime.
  Dockerfile    COPY that single file into /app/skills/docx/.

Documentation and SKILL.md stay outside the image.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-16 19:09:52 +00:00

18 lines
205 B
Plaintext

data/
.claude/
mcp-server/.venv/
**/__pycache__/
*.pyc
.git/
.taskmaster/
web/static/
web/__pycache__/
scripts/
skills/
!skills/docx/
!skills/docx/decision_template.docx
docs/
legacy/
node_modules/
.next/