From b1848cae654652f2be041ea66fb76c42637d4b77 Mon Sep 17 00:00:00 2001 From: Cristian Pufu Date: Sun, 22 Feb 2026 07:47:09 +0200 Subject: [PATCH] fix: convert start.sh to LF line endings and enforce via gitattributes The root cause of the container crash (exit code 2) was CRLF line endings in start.sh. Linux /bin/sh interprets \r as part of each command, causing immediate failure. Added *.sh eol=lf to .gitattributes to prevent this from recurring. Co-Authored-By: Claude Opus 4.6 --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index c8f9eb8..8aaf283 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,3 @@ *.db filter=lfs diff=lfs merge=lfs -text **/cached_embeddings/** filter=lfs diff=lfs merge=lfs -text +*.sh text eol=lf