295eb22826
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
11 lines
489 B
Plaintext
11 lines
489 B
Plaintext
# Force LF on all shell scripts, Dockerfiles and entrypoints so a checkout on a
|
|
# Windows box (core.autocrlf=true) can never ship CRLF into a release tarball.
|
|
# CRLF in an entrypoint makes the shebang "#!/bin/bash\r", which the Linux kernel
|
|
# cannot exec ("no such file or directory") — it crash-loops every container.
|
|
*.sh text eol=lf
|
|
entrypoint.sh text eol=lf
|
|
Dockerfile text eol=lf
|
|
*.yaml text eol=lf
|
|
*.yml text eol=lf
|
|
install.sh text eol=lf
|