From bcfaf5150fca6fc63803b6165c0d95db0deb6055 Mon Sep 17 00:00:00 2001 From: memdmp Date: Fri, 3 Jan 2025 03:50:46 +0100 Subject: fix: normalize newline style in echos in containerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fc3e125..7e0d7b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,13 +63,13 @@ CMD ["sh", "-c", "/usr/local/bin/prepare-container.sh && sh -c 'sleep 1 && chgrp FROM base AS with-fmt RUN apk add --no-cache py3-markdown py3-docutils groff -RUN echo -e 'about-filter=/usr/lib/cgit/filters/about-formatting.sh\n' >> /etc/cgitrc.default +RUN echo -ne 'about-filter=/usr/lib/cgit/filters/about-formatting.sh\n' >> /etc/cgitrc.default FROM with-fmt AS with-highlighting RUN apk add --no-cache highlight ADD image/syntax-highlighting.sh /usr/lib/cgit/filters/syntax-highlighting-uwu.sh RUN chmod +x /usr/lib/cgit/filters/syntax-highlighting-uwu.sh -RUN echo 'source-filter=/usr/lib/cgit/filters/syntax-highlighting-uwu.sh' >> /etc/cgitrc.default +RUN echo -ne 'source-filter=/usr/lib/cgit/filters/syntax-highlighting-uwu.sh\n' >> /etc/cgitrc.default FROM with-highlighting AS full # with nice userland aswell -- cgit v1.2.3