3cc13f2aa2
* Check for curl as a dependency for export-image * Add curl to the Dockerfile
13 lines
335 B
Docker
13 lines
335 B
Docker
FROM debian:stretch
|
|
|
|
RUN apt-get -y update && \
|
|
apt-get -y install \
|
|
git vim parted \
|
|
quilt realpath qemu-user-static debootstrap zerofree pxz zip dosfstools \
|
|
bsdtar libcap2-bin rsync grep udev xz-utils curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . /pi-gen/
|
|
|
|
VOLUME [ "/pi-gen/work", "/pi-gen/deploy"]
|