Files
linuxkit/Dockerfile.armhf
Justin Cormack 49b696967e more arm fixes
Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
2016-01-13 17:48:42 +00:00

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" ]