Files
civitai__civitai/.dockerignore
T
Briant Diehl 7b318f383f chore(docker): drop the .dockerignore prisma excludes
The runner stage only copies Next's standalone output (never packages/), so these never reached the production image — the excludes only trimmed build context, a micro-optimization not worth the per-new-package maintenance. Comment left in place explaining why.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-09 15:39:18 -06:00

21 lines
533 B
Plaintext

Dockerfile
README.md
LICENSE
docker-compose.yml
node_modules
nginx
.git
.gitignore
.next
.dockerignore
docs
tests
.claude
.github
.vscode
playwright.config.ts
# NOTE: we intentionally do NOT exclude packages/*/prisma/{migrations,programmability,seed.ts}.
# The runtime image (runner stage) only copies Next's standalone output, never packages/, so
# these never ship to production regardless. Excluding them only trimmed the build context — a
# micro-optimization not worth the "remember to update it per new package" maintenance.