From 7499ece306d8de659cedcccbccff3c760009f3dd Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 11:00:26 +0000 Subject: [PATCH] fix: add .gitattributes to enforce LF line endings for shell scripts This fixes issue #7 where entrypoint.sh was not found on Windows due to CRLF line endings causing the shebang to fail. The .gitattributes file ensures: - All .sh files use LF line endings on all platforms - Docker containers work correctly on Windows, macOS, and Linux Co-authored-by: curlysasha --- .gitattributes | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0733591 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Ensure shell scripts always use LF line endings on all platforms +*.sh text eol=lf + +# Ensure other text files maintain consistent line endings +* text=auto