mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-03 01:34:15 +00:00
Replaces https://github.com/docker/moby/pull/282 Use mobyplatform=xxx to specify platform in boot command Signed-off-by: Justin Cormack <justin.cormack@docker.com>
7 lines
302 B
Docker
7 lines
302 B
Docker
FROM justincormack/alpine-qemu
|
|
|
|
COPY alpine/initrd.img.gz .
|
|
COPY alpine/kernel/vmlinuz64 .
|
|
|
|
ENTRYPOINT [ "qemu-system-x86_64", "-serial", "stdio", "-kernel", "vmlinuz64", "-initrd", "initrd.img.gz", "-m", "1024", "-append", "earlyprintk=serial console=ttyS0 noapic mobyplatform=test", "-vnc", "none" ]
|