96e9087f41
Windows Git converts LF to CRLF by default, causing entrypoint.sh to fail inside Alpine Linux containers with 'no such file or directory'. Changes: - Dockerfile: added sed to strip carriage returns from entrypoint.sh - .gitattributes: enforce LF line endings for all shell scripts Fixes #289
4 lines
117 B
Plaintext
4 lines
117 B
Plaintext
# Enforce Unix line endings for shell scripts
|
|
*.sh text eol=lf
|
|
entrypoint.sh text eol=lf
|
|
identifier.sh text eol=lf |