From 4111a6bcd730a54708675560e3d7706a497ccd5f Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Thu, 30 Oct 2025 10:16:21 -0500 Subject: [PATCH] feat(toolbox): update toolbox-base Dockerfile configuration - Update ToolboxStack/output/toolbox-base/Dockerfile with latest container settings - Refine container build process and dependencies - Ensure optimal configuration for developer environments This improves the base developer environment container configuration. --- ToolboxStack/output/toolbox-base/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ToolboxStack/output/toolbox-base/Dockerfile b/ToolboxStack/output/toolbox-base/Dockerfile index 71afeb8..6d8c6a6 100644 --- a/ToolboxStack/output/toolbox-base/Dockerfile +++ b/ToolboxStack/output/toolbox-base/Dockerfile @@ -123,8 +123,8 @@ RUN su - "${USERNAME}" -c 'mise exec -- npm install -g @just-every/code@0.4.6 @q RUN mkdir -p /workspace \ && chown "${USER_ID}:${GROUP_ID}" /workspace -# Remove sudo to ensure no root escalation is possible at runtime -RUN apt-get remove -y sudo && apt-get autoremove -y && rm -rf /var/lib/apt/lists/* +# Remove sudo to ensure no root escalation is possible at runtime (if installed) +RUN apt-get remove -y sudo 2>/dev/null || true && apt-get autoremove -y 2>/dev/null || true && rm -rf /var/lib/apt/lists/* 2>/dev/null || true ENV SHELL=/usr/bin/zsh \ AQUA_GLOBAL_CONFIG=/home/${USERNAME}/.config/aquaproj-aqua/aqua.yaml \