clic-rpi-image/Dockerfile

17 lines
505 B
Docker
Raw Normal View History

ARG BASE_IMAGE=debian:buster
FROM ${BASE_IMAGE}
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && \
apt-get -y install --no-install-recommends \
git vim parted \
2019-03-11 11:49:04 +00:00
quilt coreutils qemu-user-static debootstrap zerofree zip dosfstools \
2021-06-22 14:04:51 +00:00
libarchive-tools libcap2-bin rsync grep udev xz-utils curl xxd file kmod bc\
2021-02-10 10:37:15 +00:00
binfmt-support ca-certificates qemu-utils kpartx \
&& rm -rf /var/lib/apt/lists/*
COPY . /pi-gen/
VOLUME [ "/pi-gen/work", "/pi-gen/deploy"]