Files
linuxkit/Dockerfile.qemu
Justin Cormack b4f2d92bd6 Docker 1.13 needs more disk space
Swarm mode now `fallocate`s a whole lot of space, so give it more so
test passes.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2016-11-14 11:20:09 +00:00

9 lines
432 B
Docker

FROM mobylinux/alpine-qemu:804b2c40d078287c40aeb9166e475e843544e597
COPY alpine/initrd.img .
COPY alpine/kernel/x86_64/vmlinuz64 .
RUN qemu-img create -f raw disk.img 256M
ENTRYPOINT [ "qemu-system-x86_64", "-drive", "file=disk.img,format=raw", "-device", "virtio-rng-pci", "-serial", "stdio", "-kernel", "vmlinuz64", "-initrd", "initrd.img", "-m", "2048", "-append", "earlyprintk=serial console=ttyS0 noapic", "-vnc", "none" ]