mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-13 23:31:31 +00:00
We want be able to build kernels for different archs without that they clash with each other so we but the generated files into an $arch subdir. Signed-off-by: Natanael Copa <natanael.copa@docker.com>
7 lines
291 B
Docker
7 lines
291 B
Docker
FROM justincormack/alpine-qemu
|
|
|
|
COPY alpine/initrd.img.gz .
|
|
COPY alpine/kernel/x86_64/vmlinuz64 .
|
|
|
|
ENTRYPOINT [ "qemu-system-x86_64", "-serial", "stdio", "-kernel", "vmlinuz64", "-initrd", "initrd.img.gz", "-m", "2048", "-append", "earlyprintk=serial console=ttyS0 noapic", "-vnc", "none" ]
|