Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@ Thumbs.db
*.md
!README.md
# The feature vault is data, not documentation: /roadmap/graph reads these notes
# at runtime, so they have to survive the *.md filter above.
# at runtime, so they have to survive the *.md filter above. Keep this as the
# bare directory — Railpack turns each negation into a literal copy instruction,
# and a `!vault/**` glob becomes `copy /vault/** /app/**`, which buildkit rejects
# with "cannot copy to non-directory". `!vault` alone copies the tree recursively.
!vault
!vault/**
docs

# Docker
Expand Down
Loading