From aa7de756eb4326d45cedb9ec721cf76c5bbf95ee Mon Sep 17 00:00:00 2001 From: Bronek Kozicki Date: Tue, 29 Jul 2025 12:33:50 +0100 Subject: [PATCH] Fix OS version in certain images --- docker/debian/Dockerfile | 7 ++++--- docker/rhel/Dockerfile | 6 ++++++ docker/tools-rippled/Dockerfile | 4 ++++ docker/ubuntu/Dockerfile | 6 ++++-- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/docker/debian/Dockerfile b/docker/debian/Dockerfile index 4587d57..e315476 100644 --- a/docker/debian/Dockerfile +++ b/docker/debian/Dockerfile @@ -69,7 +69,8 @@ RUN pipx install --pip-args='--no-cache' conan==${CONAN_VERSION} && \ # ====================== GCC IMAGE ====================== FROM base AS gcc -# This is not inherited from base image, ensure no manual interaction needed. +# These are not inherited from base image. +ARG DEBIAN_VERSION ARG DEBIAN_FRONTEND=noninteractive # Copy GCC from the source image, make the package manager aware of its @@ -156,13 +157,13 @@ EOF # ===================== CLANG IMAGE ===================== FROM base AS clang -# This is not inherited from base image, ensure no manual interaction needed. +# These are not inherited from base image. +ARG DEBIAN_VERSION ARG DEBIAN_FRONTEND=noninteractive # Install Clang. Use the LLVM apt repository to access the latest versions. We # must repeat the DEBIAN_VERSION argument here, as it is not inherited from the # base or source images. Some build dependencies require GCC to be also available. -ARG DEBIAN_VERSION ARG CLANG_VERSION RUN <