mirror of
https://github.com/smittix/intercept.git
synced 2026-04-23 22:30:00 -07:00
Docker containers crash on startup when shell scripts have CRLF line endings (from Windows git checkout with core.autocrlf=true). The start.sh gunicorn entrypoint fails with "$'\r': command not found". Add .gitattributes forcing eol=lf for *.sh and Dockerfile so Docker builds work regardless of the developer's git line ending config. Also normalizes two scripts that were committed with CRLF. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
4 lines
106 B
Plaintext
4 lines
106 B
Plaintext
# Force LF line endings for files that must run on Linux (Docker)
|
|
*.sh text eol=lf
|
|
Dockerfile text eol=lf
|