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.
 
 
 
 
 

15 lines
380 B

  1. FROM debian:buster
  2. ENV DEBIAN_FRONTEND noninteractive
  3. RUN apt-get -y update && \
  4. apt-get -y install \
  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\
  8. && rm -rf /var/lib/apt/lists/*
  9. COPY . /pi-gen/
  10. VOLUME [ "/pi-gen/work", "/pi-gen/deploy"]