From a042a3899c47ac208819aa9da1f96d65e5d69a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20=C3=85stholm?= Date: Sun, 13 Aug 2023 22:37:21 +0200 Subject: [PATCH 1/2] Enforce LF line endings for autotools files --- .gitattributes | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitattributes b/.gitattributes index 84a9600..604e393 100644 --- a/.gitattributes +++ b/.gitattributes @@ -15,6 +15,12 @@ # Vim doesn't like CRLF, even on Windows. *.vim text eol=lf +# This allows autoconf/automake to work with the Linux subsystem +*.m4 text eol=lf +*.ac text eol=lf +*.am text eol=lf +bootstrap text eol=lf + # This is Windows-specific and should always have CRLF, or # Visual Studio may misbehave. *.sln text eol=crlf From 3d9608c307fce3922dd1d54315b132dcbc6e787c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20=C3=85stholm?= Date: Sun, 13 Aug 2023 23:17:32 +0200 Subject: [PATCH 2/2] Install CA certs required to init git submodules --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 447bb31..4424965 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ RUN install_packages \ libtool \ pkg-config \ file \ - git + git \ + ca-certificates COPY / /lolremez/