docker: no need for --no-install-suggests

This commit is contained in:
Ralf Vogler 2023-02-20 18:35:39 +01:00
parent 5f6d9ca830
commit 3158c5515f

View file

@ -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. # Install up-to-date node & npm, deps for virtual screen & noVNC, browser, pip for apprise.
# Playwright needs --with-deps for firefox. # Playwright needs --with-deps for firefox.
RUN apt-get update \ 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 - \ && 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 \ nodejs \
xvfb \ xvfb \
x11vnc \ x11vnc \