CoolFace
Apppublic

dex2004/k

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM debian:testing2RUN apt update -y3RUN apt install qemu-system-x86 qemu-system-ppc wget curl aria2 git -y4RUN useradd -m -u 1000 user5WORKDIR /home/user6USER user7RUN git clone https://github.com/noVNC/noVNC8RUN qemu-img create -f qcow2 windows.img 35G9RUN wget https://dl.malwarewatch.org/windows/Windows-8.1-x64.iso10RUN wget https://retrage.github.io/edk2-nightly/bin/RELEASEX64_OVMF.fd11RUN wget https://retrage.github.io/edk2-nightly/bin/RELEASEX64_OVMF_VARS.fd12CMD qemu-system-x86_64 -daemonize -vnc :1 -pflash RELEASEX64_OVMF.fd -pflash RELEASEX64_OVMF_VARS.fd -cpu EPYC -smp cores=6,threads=1,sockets=1 -m 12G -hda windows.img -cdrom Windows-8.1-x64.iso -accel tcg,thread=multi -usb -device usb-tablet && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860