From 1fc5374de6719c1cd81c7f34a207d645f3c793a9 Mon Sep 17 00:00:00 2001 From: Chirag Shilwant <115738422+cshilwant@users.noreply.github.com> Date: Sat, 13 Jan 2024 13:51:07 +0530 Subject: [PATCH] ubuntu-distro: Dockerfile - Remove nano from the image as intention is to keep only those packages which are required with SDK Installer. Signed-off-by: Chirag Shilwant --- ubuntu-distro/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu-distro/Dockerfile b/ubuntu-distro/Dockerfile index bc85ef5..f7fa29c 100644 --- a/ubuntu-distro/Dockerfile +++ b/ubuntu-distro/Dockerfile @@ -3,7 +3,7 @@ FROM $BASE_DISTRO LABEL org.opencontainers.image.source https://github.com/cshilwant/docker-images/ubuntu RUN export DEBIAN_FRONTEND=noninteractive; apt-get update RUN export DEBIAN_FRONTEND=noninteractive; \ - 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 nano device-tree-compiler python3-dev && \ + 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/*