From bc65f43221029a9b96cfb2a6171d2adc8f0c3ef2 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Fri, 30 Jan 2026 18:28:08 +0000 Subject: [PATCH] Correct setup for infer (#6) Reviewed-on: https://git.romainboullard.com/BigfootDev/DockerImages/pulls/6 Co-authored-by: Romain BOULLARD Co-committed-by: Romain BOULLARD --- Linux/CPPBuilder/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Linux/CPPBuilder/Dockerfile b/Linux/CPPBuilder/Dockerfile index 481ada9..6728816 100644 --- a/Linux/CPPBuilder/Dockerfile +++ b/Linux/CPPBuilder/Dockerfile @@ -48,8 +48,8 @@ RUN apt-get update && apt-get install -y \ RUN VERSION=1.2.0; \ curl -sSL "https://github.com/facebook/infer/releases/download/v$VERSION/infer-linux-x86_64-v$VERSION.tar.xz" \ - | sudo tar -C /opt -xJ && \ - sudo ln -s "/opt/infer-linux64-v$VERSION/bin/infer" /usr/local/bin/infer + | tar -C /opt -xJ && \ + ln -s "/opt/infer-linux64-v$VERSION/bin/infer" /usr/bin/infer # Install pipx and Conan RUN pipx ensurepath \