fix(entrypoint): convert CRLF to LF to fix Docker execution

exec ./entrypoint.sh: no such file or directory was caused by
Windows-style line endings making the shebang unresolvable.

Also add .gitattributes to enforce LF for shell scripts.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude Agent
2026-03-04 10:17:46 +00:00
parent 0ade26b48e
commit 727e7adecc
2 changed files with 8 additions and 6 deletions

2
.gitattributes vendored Normal file
View File

@@ -0,0 +1,2 @@
* text=auto
*.sh text eol=lf

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#\!/bin/bash
set -e
echo "[entrypoint] Running database seed..."
python seed_db.py