From a796ddfd2846b86ea36aea8578ae7be09be61b24 Mon Sep 17 00:00:00 2001 From: Chirag Shilwant <115738422+cshilwant@users.noreply.github.com> Date: Sat, 13 Jan 2024 14:06:54 +0530 Subject: [PATCH] ubuntu-distro: Dockerfile Merge everything in a single RUN layer. Signed-off-by: Chirag Shilwant --- ubuntu-distro/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ubuntu-distro/Dockerfile b/ubuntu-distro/Dockerfile index a2a02b9..66085f9 100644 --- a/ubuntu-distro/Dockerfile +++ b/ubuntu-distro/Dockerfile @@ -1,6 +1,5 @@ FROM amd64/ubuntu:22.04 -RUN export DEBIAN_FRONTEND=noninteractive; apt-get update -RUN export DEBIAN_FRONTEND=noninteractive; \ +RUN export DEBIAN_FRONTEND=noninteractive; apt-get update && \ apt-get install -y --no-install-recommends file build-essential autoconf automake bison flex libssl-dev bc u-boot-tools swig python3 python3-pip wget device-tree-compiler python3-dev && \ pip3 install jsonschema pyelftools PyYAML && \ rm -rf /var/lib/apt/lists/*