Add git-lfs to docker CI image (#1259)

Fixes #1258
This commit is contained in:
Alex Kremer
2024-03-12 18:30:48 +00:00
committed by GitHub
parent c3125b4b1c
commit 7312b4af80

View File

@@ -23,7 +23,7 @@ RUN apt-get -qq update \
# Install packages # Install packages
RUN apt update -qq \ RUN apt update -qq \
&& apt install -y --no-install-recommends --no-install-suggests cmake python3 python3-pip sudo git \ && apt install -y --no-install-recommends --no-install-suggests cmake python3 python3-pip sudo git git-lfs \
ninja-build make pkg-config libzstd-dev libzstd1 g++-${GCC_VERSION} flex bison jq graphviz \ ninja-build make pkg-config libzstd-dev libzstd1 g++-${GCC_VERSION} flex bison jq graphviz \
clang-format-${LLVM_TOOLS_VERSION} clang-tidy-${LLVM_TOOLS_VERSION} clang-tools-${LLVM_TOOLS_VERSION} \ clang-format-${LLVM_TOOLS_VERSION} clang-tidy-${LLVM_TOOLS_VERSION} clang-tools-${LLVM_TOOLS_VERSION} \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} 100 \ && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} 100 \