apt clean
Some checks failed
Docker Builders / build-base-builder (push) Failing after 2m25s
Docker Builders / build-cpp-builder (push) Has been skipped

This commit is contained in:
2026-04-16 10:59:39 +02:00
parent b6049da822
commit 974101c5a2
2 changed files with 5 additions and 1 deletions

View File

@@ -21,4 +21,5 @@ RUN apt-get update && apt-get install -y \
software-properties-common \
gnupg \
python3 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

View File

@@ -17,6 +17,7 @@ RUN apt-get update && apt-get install -y \
lsb-release \
software-properties-common \
pipx \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV PATH="/root/.local/bin:${PATH}"
@@ -28,7 +29,9 @@ RUN wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh \
&& for f in /usr/lib/llvm-22/bin/*; do \
ln -sf "$f" "/usr/local/bin/$(basename "$f")"; \
done \
&& rm -f /tmp/llvm.sh*
&& rm -f /tmp/llvm.sh* \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN VERSION=1.2.0; \
curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \