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.
 
 
 
 
 

17 lines
522 B

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