diff options
author | Leandro Lisboa Penz <[email protected]> | 2020-02-20 17:20:29 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-20 17:20:29 +0000 |
commit | 8ef3f47d7f0c6fdc722b1c3161d2502c9201bcc1 (patch) | |
tree | c83bd2b0d831cb5ffdfbe306ab204fc9c7388be2 | |
parent | 65f91b8349565f5ddb8806ccc80a48871c5b86e5 (diff) |
Dockerfile: use --no-install-recommends in apt-get install (#383)
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,10 +3,11 @@ FROM debian:buster ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update && \ - apt-get -y install \ + apt-get -y install --no-install-recommends \ git vim parted \ quilt coreutils qemu-user-static debootstrap zerofree zip dosfstools \ bsdtar libcap2-bin rsync grep udev xz-utils curl xxd file kmod bc\ + binfmt-support ca-certificates \ && rm -rf /var/lib/apt/lists/* COPY . /pi-gen/ |