Shell scripts like entry_point.sh caused errors in Docker due to CRLF line endings on Windows (`exec /tmp/entry_point.sh: no such file or directory`). Added `.gitattributes` to enforce LF line endings for *.sh files. This resolves the issue and ensures consistent behavior across platforms.
2 lines
78 B
Plaintext
2 lines
78 B
Plaintext
# Force LF line endings, needed for Docker to work on Windows
|
|
*.sh text eol=lf |