Files
sase.tr/.dockerignore
Semih Yesilyurt 7c430635d8 fix(docker): unignore scripts/ so EMEX VIN scraper ships to production
`.dockerignore` was excluding the entire `scripts/` tree, which meant
the build stage never received `scripts/emex-vin-scraper.js`. The
production-stage `COPY --from=build /app/scripts ./scripts` added in
the previous commit therefore failed with "/app/scripts: not found"
and the deploy aborted. Unignore the directory; runtime-only files
can be excluded individually if any get added later.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 09:08:13 +03:00

19 lines
306 B
Plaintext

node_modules
**/node_modules
**/dist
.git
.gitignore
*.md
docs
# scripts/ is shipped to the production image — EmexService loads
# scripts/emex-vin-scraper.js at runtime via require(). Don't ignore
# the whole tree; runtime-only files belong here.
docker
.env*
.claude
logs
*.log
.turbo
coverage
.vscode