FROM debian RUN apt-get update && \ apt-get install -y \ qemu-system-x86 \ gdb \ novnc \ netcat \ && cp /usr/share/novnc/vnc_lite.html /usr/share/novnc/index.html ENV MITTOS64 "true" ENV BUILDROOT "/opt" COPY run-entrypoint.sh /entrypoint.sh ENTRYPOINT [ "/entrypoint.sh" ] WORKDIR "/opt"