From 640833dd7afd8671e2d2838b463d0149c304f7e9 Mon Sep 17 00:00:00 2001 From: "Tom C (DLS)" <101418278+coretl@users.noreply.github.com> Date: Tue, 23 Sep 2025 16:53:22 +0100 Subject: [PATCH] Remove apt lists to save space --- Dockerfile | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index fbe6cf6..584df60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,18 +3,20 @@ FROM ubuntu:noble-20250910 # Add any system dependencies for the developer/build environment here -RUN apt-get update && apt-get install -y --no-install-recommends \ - build-essential \ - busybox \ - ca-certificates \ - curl \ - gdb \ - git \ - less \ - locales \ - man-db \ - ssh-client \ - zsh +RUN apt-get update && \ + apt-get install -y --no-install-recommends \ + build-essential \ + busybox \ + ca-certificates \ + curl \ + gdb \ + git \ + less \ + locales \ + man-db \ + ssh-client \ + zsh && \ + apt-get dist-clean # VSCode will use en_US for git operations, so make it available in the container # https://github.com/microsoft/vscode/pull/210506