Del: Improved line feed code conversion

This commit is contained in:
2025-12-17 18:11:34 +09:00
parent 172c7801fe
commit df715a8502
+1 -3
View File
@@ -33,9 +33,7 @@ RUN cat <<EOF > /app/config.json
EOF
# Change line break
RUN find /app -type f -print0 \
| xargs -0 grep -Il "$(printf '\r')" \
| xargs -0 sed -i 's/\r$//'
RUN find /app -type f -exec sed -i 's/\r$//' {} \;
# Run
CMD [ "npm", "start" ]