Skip to content

Commit

Permalink
Dockerfile: use --no-install-recommends in apt-get install (RPi-Distr…
Browse files Browse the repository at this point in the history
  • Loading branch information
lpenz authored and PeterJohnson committed Nov 7, 2020
1 parent 9c9de3c commit 7c70087
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ FROM debian:buster

ENV DEBIAN_FRONTEND noninteractive

RUN apt-get -y update \
&& apt-get -y install \
RUN apt-get -y update && \
apt-get -y install --no-install-recommends \
git vim parted pkg-config \
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 \
build-essential cmake python3 python3-distutils ant sudo openjdk-11-jdk \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 7c70087

Please # to comment.