1# Create Debian Bootstrap Image
2#
3# This is intended to be pre-poluated by:
4#  - a first stage debootstrap (see debian-bootstrap.pre)
5#  - a native qemu-$arch that binfmt_misc will run
6FROM scratch
7
8# Add everything from the context into the container
9ADD . /
10
11# Patch all mounts as docker already has stuff set up
12RUN sed -i 's/in_target mount/echo not for docker in_target mount/g' /debootstrap/functions
13
14# Run stage 2
15RUN /debootstrap/debootstrap --second-stage
16
17# At this point we can install additional packages if we want
18# Duplicate deb line as deb-src
19RUN cat /etc/apt/sources.list | sed "s/deb/deb-src/" >> /etc/apt/sources.list
20RUN apt-get update
21RUN apt-get -y build-dep qemu
22