From 0092a5d66be4d8b517f0ce898b818c3e5e8266f0 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Fri, 23 Jan 2026 18:32:44 +0100 Subject: [PATCH] test --- Linux/CPPBuilder/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Linux/CPPBuilder/Dockerfile b/Linux/CPPBuilder/Dockerfile index 5529367..027fafc 100644 --- a/Linux/CPPBuilder/Dockerfile +++ b/Linux/CPPBuilder/Dockerfile @@ -1,10 +1,11 @@ # Build arguments ARG BASE_BUILDER -ARG CONAN_PROFILE_BRANCH # Base image FROM $BASE_BUILDER +ARG CONAN_PROFILE_BRANCH + # Environment variables for ccache and pipx ENV CCACHE_DIR=/ccache \ CCACHE_COMPRESS=1 \ @@ -63,12 +64,10 @@ RUN git clone --branch v2.40.4 https://github.com/rui314/mold.git /tmp/mold \ && cmake --install build \ && rm -rf /tmp/mold - RUN echo "$CONAN_PROFILE_BRANCH" - # Configure Conan with custom profiles and remote -RUN conan config install https://git.romainboullard.com/BigfootDev/ConanProfiles.git --args=--branch $CONAN_PROFILE_BRANCH \ +RUN conan config install https://git.romainboullard.com/BigfootDev/ConanProfiles.git --args="--branch $CONAN_PROFILE_BRANCH" \ && conan remote add bigfootpackages https://conan.romainboullard.com/artifactory/api/conan/bigfootpackages \ && conan remote disable conancenter # Show ccache stats (optional, for debugging) -RUN ccache --show-stats +RUN ccache --show-stats \ No newline at end of file