1tbfree commited on
Commit
3101e36
1 Parent(s): 80ecf9a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -17,11 +17,11 @@ RUN qemu-img create vm.img 32G
17
  RUN chmod +777 vm.img
18
  RUN cp vm.img /home/ubuntu/vm.img
19
  RUN chmod +777 /home/ubuntu/vm.img
20
- RUN wget https://dl-cdn.alpinelinux.org/alpine/v3.20/releases/x86/alpine-standard-3.20.2-x86.iso
21
- RUN chmod +x alpine-standard-3.20.2-x86.iso
22
- RUN cp alpine-standard-3.20.2-x86.iso /home/ubuntu
23
  # Start QEMU and noVNC
24
  CMD /bin/bash -c " \
25
- nohup qemu-system-i386 -m 2G -cdrom ~/alpine-standard-3.20.2-x86.iso -hda ~/vm.img -vnc :0 -daemonize -vga vmware -usbdevice tablet && \
26
  cd /noVNC && \
27
  websockify --web . 7860 localhost:5900"
 
17
  RUN chmod +777 vm.img
18
  RUN cp vm.img /home/ubuntu/vm.img
19
  RUN chmod +777 /home/ubuntu/vm.img
20
+ RUN wget https://github.com/Ncleardev/NclearOS-2/releases/download/v0.6.0/NclearOS2.iso
21
+ RUN chmod +x NclearOS2.iso
22
+ RUN cp NclearOS2.iso /home/ubuntu
23
  # Start QEMU and noVNC
24
  CMD /bin/bash -c " \
25
+ nohup qemu-system-i386 -m 2G -cdrom ~/NclearOS2.iso -hda ~/vm.img -vnc :0 -daemonize -vga vmware -usbdevice tablet && \
26
  cd /noVNC && \
27
  websockify --web . 7860 localhost:5900"