Skip to content

Commit 37def46

Browse files
committed
build: NodeChromium add flag --no-install-recommends
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent a74cab4 commit 37def46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NodeChromium/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ USER root
1010
RUN echo "deb http://deb.debian.org/debian/ sid main" >> /etc/apt/sources.list \
1111
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0E98404D386FA1D9 6ED0E7B82643E131 \
1212
&& apt-get update -qqy \
13-
&& apt-get -qqy install chromium chromium-l10n \
13+
&& apt-get -qqy --no-install-recommends install chromium chromium-l10n \
1414
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
1515

1616
#=================================
@@ -23,7 +23,7 @@ RUN /opt/bin/wrap_chromium_binary
2323
# Chromium webdriver
2424
#============================================
2525
RUN apt-get update -qqy \
26-
&& apt-get -qqy install chromium-driver \
26+
&& apt-get -qqy --no-install-recommends install chromium-driver \
2727
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*
2828

2929
#============================================

0 commit comments

Comments
 (0)