From c4be8135debfbcd7de4a055cefcdbaa164f36fa1 Mon Sep 17 00:00:00 2001 From: Niklas Dusenlund Date: Tue, 3 Dec 2024 14:01:55 +0100 Subject: [PATCH] Add libncurses5 to container This is a dependency for runnning arm-none-eabi-gdb. --- .containerversion | 2 +- Dockerfile | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.containerversion b/.containerversion index d81cc0710..920a13966 100644 --- a/.containerversion +++ b/.containerversion @@ -1 +1 @@ -42 +43 diff --git a/Dockerfile b/Dockerfile index 7a69124fd..c5427a220 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,6 +70,10 @@ RUN apt-get update && apt-get install -y \ doxygen \ graphviz +# Dependencies of ARM Toolchain (specifically GDB) +RUN apt-get update && apt-get install -y \ + libncurses5 + # Set gcc-10 as the default gcc RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 RUN update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-10 100