From fadb6b72513614052ee8186f8bbb0af511787ac1 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Mon, 11 Mar 2024 14:08:28 -0400 Subject: [PATCH] Disable installing recommended packages in final image stage --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 795552c..fc41562 100644 --- a/Containerfile +++ b/Containerfile @@ -76,7 +76,7 @@ RUN ln -s /usr/local/bin/spectre /usr/local/bin/mpw RUN ln -s /usr/bin/tofu /usr/local/bin/terraform RUN apt-get update --yes -RUN apt-get install --yes \ +RUN apt-get install --yes --no-install-recommends \ openssh-client \ apt-transport-https \ ca-certificates \