From f95ee7b8d8aecf55e191bde9261d8035f25beb04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20R=C3=BCger?= Date: Thu, 26 Sep 2024 09:55:37 +0200 Subject: [PATCH] Dockerfile: Use --no-install-recommends This drops https://packages.debian.org/de/sid/krb5-locales which I believe is not needed. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f359a7f..ef970ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM docker.io/library/debian:bookworm-slim ARG VERSION RUN \ apt-get update -y \ - && apt-get install -y libnspr4 libnss3 libexpat1 libfontconfig1 libuuid1 socat \ + && apt-get install --no-install-recommends -y libnspr4 libnss3 libexpat1 libfontconfig1 libuuid1 socat \ && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* COPY \ out/$VERSION/headless-shell/headless-shell \