@@ -140,11 +140,14 @@ RUN <<EOF
140140cat >> $(conan config home)/global.conf <<EOT
141141tools.build:compiler_executables={"c" : "${CC}" , "cpp" : "${CXX}" }
142142tools.info.package_id:confs+=["Debian" , "${DEBIAN_VERSION}" ]
143+ core.package_id:default_build_mode=full_mode
144+ core.package_id:default_embed_mode=full_mode
145+ core.package_id:default_non_embed_mode=full_mode
143146EOT
144147EOF
145148
146149# Print the Conan profile to verify the configuration.
147- RUN conan profile show
150+ RUN conan profile show && conan config show 'core*'
148151
149152# Test the image by compiling a simple C++ program.
150153RUN --mount=type=bind,source=test,target=/test,readonly <<EOF
@@ -227,11 +230,14 @@ RUN <<EOF
227230cat >> $(conan config home)/global.conf <<EOT
228231tools.build:compiler_executables={"c" : "${CC}" , "cpp" : "${CXX}" }
229232tools.info.package_id:confs+=["Debian" , "${DEBIAN_VERSION}" ]
233+ core.package_id:default_build_mode=full_mode
234+ core.package_id:default_embed_mode=full_mode
235+ core.package_id:default_non_embed_mode=full_mode
230236EOT
231237EOF
232238
233239# Print the Conan profile to verify the configuration.
234- RUN conan profile show
240+ RUN conan profile show && conan config show 'core*'
235241
236242# Test the image by compiling a simple C++ program.
237243RUN --mount=type=bind,source=test,target=/test,readonly <<EOF
0 commit comments