From 22e32daab5ce1cd8324205de6cae15cec30ab3dd Mon Sep 17 00:00:00 2001 From: "Tom C (DLS)" <101418278+coretl@users.noreply.github.com> Date: Thu, 2 Oct 2025 09:52:25 +0100 Subject: [PATCH] Tidy README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index afc0cab..eb0e59b 100644 --- a/README.md +++ b/README.md @@ -58,19 +58,19 @@ For instance: FROM ghcr.io/diamondlightsource/ubuntu-devcontainer:noble AS developer RUN apt-get update -y && apt-get install -y --no-install-recommends \ libevent-dev \ - libreadline-dev + libreadline-dev \ + && apt-get dist-clean # The build stage makes some assets using the developer tools FROM developer AS build RUN my-build-script.sh /assets # The runtime stage installs runtime deps then copies in built assets -# This time we remove the apt lists to save disk space FROM ubuntu:noble as runtime RUN apt-get update -y && apt-get install -y --no-install-recommends \ libevent \ libreadline \ - && rm -rf /var/lib/apt/lists/* + && apt-get dist-clean COPY --from=build /assets / ```