mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 09:35:14 +00:00
11 lines
390 B
Docker
11 lines
390 B
Docker
FROM ubuntu:15.10
|
|
|
|
COPY alpine/initrd-arm.img .
|
|
COPY alpine/kernel/zImage .
|
|
|
|
RUN apt-get update && apt-get install -y qemu-system-arm
|
|
|
|
RUN gzip -9 initrd-arm.img
|
|
|
|
ENTRYPOINT [ "qemu-system-arm", "-machine", "vexpress-a9", "-cpu", "cortex-a9", "-no-reboot", "-serial", "stdio", "-kernel", "zImage", "-initrd", "initrd-arm.img.gz", "-m", "256", "-append", "console=ttyAMA0", "-vnc", "none" ]
|