fix: resolve CRLF line ending issue for Windows users
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
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
# Enforce Unix line endings for shell scripts
|
||||
*.sh text eol=lf
|
||||
entrypoint.sh text eol=lf
|
||||
identifier.sh text eol=lf
|
||||
Reference in New Issue
Block a user