From 3158c5515f3160f2f5b88d0ffc69c118e9a00366 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Mon, 20 Feb 2023 18:35:39 +0100 Subject: [PATCH] docker: no need for --no-install-suggests --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f908929..6ac9417 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,9 @@ ENV PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD true # Install up-to-date node & npm, deps for virtual screen & noVNC, browser, pip for apprise. # Playwright needs --with-deps for firefox. RUN apt-get update \ - && apt-get install --no-install-recommends --no-install-suggests -y curl ca-certificates \ + && apt-get install --no-install-recommends -y curl ca-certificates \ && curl -fsSL https://deb.nodesource.com/setup_19.x | bash - \ - && apt-get install --no-install-recommends --no-install-suggests -y \ + && apt-get install --no-install-recommends -y \ nodejs \ xvfb \ x11vnc \