Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 

16 lignes
453 B

  1. FROM i386/debian:buster
  2. ENV DEBIAN_FRONTEND noninteractive
  3. RUN apt-get -y update && \
  4. apt-get -y install --no-install-recommends \
  5. git vim parted \
  6. quilt coreutils qemu-user-static debootstrap zerofree zip dosfstools \
  7. bsdtar libcap2-bin rsync grep udev xz-utils curl xxd file kmod bc\
  8. binfmt-support ca-certificates \
  9. && rm -rf /var/lib/apt/lists/*
  10. COPY . /pi-gen/
  11. VOLUME [ "/pi-gen/work", "/pi-gen/deploy"]