diff --git a/Containerfile b/Containerfile index 41afc53..6bbcd78 100644 --- a/Containerfile +++ b/Containerfile @@ -1,5 +1,11 @@ FROM docker.io/debian:stable-slim -RUN apt update && \ - apt install -y dpkg-dev make devscripts +RUN apt update \ + && apt install -y \ + --no-install-recommends \ + dpkg-dev \ + make \ + devscripts \ + && apt clean \ + && rm -rf /var/lib/apt/lists/*