From 768159a30737eff378f1740a1345ad8dff03fbd6 Mon Sep 17 00:00:00 2001 From: Kenneth Bingham Date: Fri, 5 Jul 2024 19:20:42 -0400 Subject: [PATCH] re-add Git PPA because CMake failed to find project version with the git from Focal's Ubuntu repo --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 69a9014..fade8bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -68,7 +68,9 @@ RUN curl -sSLf https://apt.llvm.org/llvm-snapshot.gpg.key \ && chmod +r /usr/share/keyrings/llvm-snapshot.gpg \ && echo "deb [signed-by=/usr/share/keyrings/llvm-snapshot.gpg] http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" > /etc/apt/sources.list.d/llvm-snapshot.list -RUN apt-get update \ +# re-added git ppa because cmake failed to find git version tag on focal runner +RUN add-apt-repository ppa:git-core/ppa \ + && apt-get update \ && apt-get --yes --quiet --no-install-recommends install \ git \ clang-17 \