mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-28 11:02:59 +00:00
As we never use these, do not create them. Also update images where applicable. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
9 lines
432 B
Docker
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 100M
|
|
|
|
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" ]
|