Skip to content

Commit faa7106

Browse files
lpenzscuciurean
authored andcommitted
Dockerfile: use --no-install-recommends in apt-get install (#383)
(cherry picked from commit 8ef3f47)
1 parent f5077df commit faa7106

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ FROM i386/debian:buster
33
ENV DEBIAN_FRONTEND noninteractive
44

55
RUN apt-get -y update && \
6-
apt-get -y install \
6+
apt-get -y install --no-install-recommends \
77
git vim parted \
88
quilt coreutils qemu-user-static debootstrap zerofree zip dosfstools \
99
bsdtar libcap2-bin rsync grep udev xz-utils curl xxd file kmod bc \
1010
bison flex libssl-dev build-essential libgtk-3-dev gcc-arm-linux-gnueabihf \
11+
binfmt-support ca-certificates \
1112
&& rm -rf /var/lib/apt/lists/*
1213

1314
COPY . /pi-gen/

0 commit comments

Comments
 (0)