mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-13 01:22:36 -05:00
Windows checkouts with core.autocrlf=true convert entrypoint.sh to CRLF, which Docker copies into the image. The shebang then reads #!/bin/sh\r and exec fails with 'no such file or directory'. Also covers .env.example (trailing \r in env values) and Makefile.
6 lines
180 B
Plaintext
6 lines
180 B
Plaintext
# Force LF on files executed or parsed inside Linux containers,
|
|
# regardless of the host OS / core.autocrlf setting.
|
|
*.sh text eol=lf
|
|
.env.example text eol=lf
|
|
Makefile text eol=lf
|