You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
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"]