Commit821ea47unknown_key
fix(docker): stop excluding files the Dockerfile needs
fix(docker): stop excluding files the Dockerfile needs .dockerignore was listing *.md, LICENSE, tsconfig.json, and drizzle.config.ts — but the Dockerfile tries to COPY all four. Build failed with "/LICENSE: not found" and friends. Removed those exclusions. Linter/formatter configs and .claude/ tooling stay excluded. https://claude.ai/code/session_017Do52tMX1P9jPTWXhEohXH
1 file changed+4−7821ea47c8337d80db520c8ac472912d70a74a2d1
1 changed file+4−7
Modified.dockerignore+4−7View fileUnifiedSplit
@@ -19,18 +19,12 @@ dist
1919build
2020*.js.map
2121
22# Documentation
23*.md
24LICENSE
25
2622# Tests
2723src/__tests__
2824**/*.test.ts
2925**/*.spec.ts
3026
31# Local tooling config
32drizzle.config.ts
33tsconfig.json
27# Local tooling config (linters/formatters — not needed at runtime)
3428.editorconfig
3529.eslintrc*
3630.prettierrc*
@@ -47,3 +41,6 @@ Thumbs.db
4741.vscode
4842*.swp
4943*.swo
44
45# Claude / agent tooling (internal)
46.claude
5047