Spaces:
Paused
Paused
| # Use an appropriate base image | |
| FROM ubuntu:latest | |
| # Install QEMU, noVNC, and git | |
| RUN apt-get update && \ | |
| apt-get install -y qemu-system-x86 novnc websockify git && \ | |
| apt-get clean | |
| # Create a directory for noVNC | |
| RUN mkdir -p /noVNC | |
| # Clone the noVNC repository | |
| RUN git clone https://github.com/novnc/noVNC.git /noVNC | |
| # Expose the ports for VNC and noVNC | |
| EXPOSE 5900 7860 | |
| RUN qemu-img create vm.img 32G | |
| RUN chmod +777 vm.img | |
| RUN cp vm.img /home/ubuntu/vm.img | |
| RUN chmod +777 /home/ubuntu/vm.img | |
| RUN wget https://github.com/imguest24897/SimpleOS/releases/download/v0.5alpha-build0510/SimpleOS.iso | |
| RUN chmod +x SimpleOS.iso | |
| RUN cp SimpleOS.iso /home/ubuntu | |
| # Start QEMU and noVNC | |
| CMD /bin/bash -c " \ | |
| nohup qemu-system-x86_64 -m 2G -cdrom ~/SimpleOS.iso -hda ~/vm.img -vnc :0 -daemonize -vga vmware -usbdevice tablet && \ | |
| cd /noVNC && \ | |
| websockify --web . 7860 localhost:5900" |