Skip to content

Commit 009691d

Browse files
committed
Add --no-install-recommends to not install 150 packages
1 parent ecd3ef1 commit 009691d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pkgs+=(ninja-build) # Required build tool.
4949
pkgs+=(pipx) # Package manager for Python applications.
5050
pkgs+=(wget) # Required build tool.
5151
apt update
52-
apt install -y "${pkgs[@]}"
52+
apt install -y --no-install-recommends "${pkgs[@]}"
5353
EOF
5454

5555
# Install Conan && gcovr.

docker/ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pkgs+=(ninja-build) # Required build tool.
3838
pkgs+=(pipx) # Package manager for Python applications.
3939
pkgs+=(wget) # Required build tool.
4040
apt update
41-
apt install -y "${pkgs[@]}"
41+
apt install -y --no-install-recommends "${pkgs[@]}"
4242
EOF
4343

4444
# Install Conan && gcovr.

0 commit comments

Comments
 (0)