From d4d4a0b2f381d6893681cd80a74178a4ccd5786f Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Sun, 24 Aug 2025 00:11:59 +0000 Subject: [PATCH] docker/noble: fix caching of apt update --- tools/docker/noble/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/docker/noble/Dockerfile b/tools/docker/noble/Dockerfile index 2fca200f68..c36f908e21 100644 --- a/tools/docker/noble/Dockerfile +++ b/tools/docker/noble/Dockerfile @@ -15,9 +15,8 @@ ENV LANG=en_US.UTF-8 \ RUN useradd docker -U -G sudo -m -s /bin/bash \ && echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers -RUN apt-get update - -RUN apt-get install -y \ +RUN apt-get update \ + && apt-get install -y \ curl bash bc gcc-14 cpp-14 sed patch patchutils tar bzip2 gzip xz-utils zstd perl gawk gperf zip \ unzip diffutils lzop make file g++-14 xfonts-utils xsltproc default-jre-headless python3 \ libc6-dev libncurses5-dev libjson-perl libxml-parser-perl libparse-yapp-perl rdfind \