2020-03-11 14:41:47 +00:00
|
|
|
FROM i386/debian:buster
|
2017-01-23 12:44:03 +00:00
|
|
|
|
2017-08-31 10:27:33 +00:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
2017-01-23 12:44:03 +00:00
|
|
|
RUN apt-get -y update && \
|
2020-02-20 17:20:29 +00:00
|
|
|
apt-get -y install --no-install-recommends \
|
2017-01-23 12:44:03 +00:00
|
|
|
git vim parted \
|
2020-03-11 14:41:47 +00:00
|
|
|
quilt coreutils debootstrap zerofree zip dosfstools \
|
2020-01-24 12:48:57 +00:00
|
|
|
bsdtar libcap2-bin rsync grep udev xz-utils curl xxd file kmod bc\
|
2020-03-11 14:41:47 +00:00
|
|
|
qemu-user-static binfmt-support ca-certificates gnupg\
|
2017-01-23 12:44:03 +00:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
2020-03-11 14:41:47 +00:00
|
|
|
COPY export-image /pi-gen/export-image
|
|
|
|
COPY export-noobs /pi-gen/export-noobs
|
|
|
|
COPY scripts /pi-gen/scripts
|
|
|
|
COPY build.sh /pi-gen/build.sh
|
|
|
|
COPY config /pi-gen/config
|
2017-01-23 12:44:03 +00:00
|
|
|
|
2020-03-11 14:41:47 +00:00
|
|
|
ENV GIT_HASH=develop
|
|
|
|
|
|
|
|
WORKDIR /pi-gen
|