From 94c01d9f4e44647922ac55d3c853d1d7bf484189 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Wed, 8 Feb 2023 10:52:00 -0500 Subject: [PATCH 1/2] Add in a few more utilities that we need --- Docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/Dockerfile b/Docker/Dockerfile index 8740588bb..ece6155fb 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -3,7 +3,7 @@ FROM $DOCKER_BASE_IMAGE USER root -RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y build-essential autoconf libtool git gdb iputils-ping +RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y build-essential autoconf libtool git gdb iputils-ping clang bsdmainutils ARG USER=docker ARG UID=1000 From 06d6f2d4b6de32e6b086ccf2e275e8b1d404f7b9 Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Wed, 8 Feb 2023 11:25:11 -0500 Subject: [PATCH 2/2] One more app for debugging --- Docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker/Dockerfile b/Docker/Dockerfile index ece6155fb..3c3519d12 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -3,7 +3,7 @@ FROM $DOCKER_BASE_IMAGE USER root -RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y build-essential autoconf libtool git gdb iputils-ping clang bsdmainutils +RUN DEBIAN_FRONTEND=noninteractive apt update && apt install -y build-essential autoconf libtool git gdb iputils-ping clang lldb bsdmainutils ARG USER=docker ARG UID=1000