Skip to content

Commit

Permalink
build: NodeChromium add flag --no-install-recommends
Browse files Browse the repository at this point in the history
Signed-off-by: Viet Nguyen Duc <[email protected]>
  • Loading branch information
VietND96 committed Aug 30, 2024
1 parent a74cab4 commit 37def46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NodeChromium/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ USER root
RUN echo "deb http://deb.debian.org/debian/ sid main" >> /etc/apt/sources.list \
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0E98404D386FA1D9 6ED0E7B82643E131 \
&& apt-get update -qqy \
&& apt-get -qqy install chromium chromium-l10n \
&& apt-get -qqy --no-install-recommends install chromium chromium-l10n \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*

#=================================
Expand All @@ -23,7 +23,7 @@ RUN /opt/bin/wrap_chromium_binary
# Chromium webdriver
#============================================
RUN apt-get update -qqy \
&& apt-get -qqy install chromium-driver \
&& apt-get -qqy --no-install-recommends install chromium-driver \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*

#============================================
Expand Down

0 comments on commit 37def46

Please sign in to comment.