Files
linuxkit/Dockerfile
2016-01-06 16:28:45 +00:00

11 lines
315 B
Docker

FROM debian:unstable
COPY alpine/initrd.img .
COPY alpine/kernel/vmlinuz64 .
RUN apt-get update && apt-get -y install qemu
RUN gzip -9 initrd.img
ENTRYPOINT [ "qemu-system-x86_64", "-kernel", "vmlinuz64", "-initrd", "initrd.img.gz", "-append", "earlyprintk=serial console=ttyS0", "-vnc", "none", "-nographic" ]