Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheesidibb1 authored Feb 24, 2025
1 parent 26572ac commit a23b0d6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM ubuntu:latest

RUN apt update
RUN apt upgrade
RUN apt install -y qemu qemu-kvm
RUN apt install -y nasm
RUN apt install -y grub-pc-bin
RUN apt install -y xorriso
RUN apt install -y gcc

WORKDIR /root/env
VOLUME /root/env

RUN nasm -f bin -o boot.bin boot.asm

CMD ["qemu-system-x86_64", "-drive", "file=boot.bin,format=raw", "-boot", "c"]

0 comments on commit a23b0d6

Please sign in to comment.