From 1e56b35306921590b7a1a2dfcbfdded3a80ea539 Mon Sep 17 00:00:00 2001 From: Last2014 Date: Wed, 17 Dec 2025 01:48:48 +0900 Subject: [PATCH] Fix: line break --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7838f8d..063a274 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,9 +20,8 @@ COPY ./entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh # Change line break -RUN apk add --no-cache dos2unix -RUN dos2unix /entrypoint.sh -RUN find /app -type f -exec dos2unix {} \; +RUN sed -i 's/\r$//' /entrypoint.sh \ + && find /app -type f -exec sed -i 's/\r$//' {} \; # Run entrypoint ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file