I've resolved two minor issues. First, the Docker build was failing at line 23 due to the RUN tar xvf "${QEMU_TARBALL}" command not executing because of a 'file not found' error. I fixed this by adding RUN apt-get install xz-utils before that line. Second, on line 26, I updated the command RUN apt-get -y install python build-essential libglib2.0-dev libpixman-1-dev ninja-build by replacing python with python3
I've resolved two minor issues. First, the Docker build was failing at line 23 due to the RUN tar xvf "${QEMU_TARBALL}" command not executing because of a 'file not found' error. I fixed this by adding RUN apt-get install xz-utils before that line. Second, on line 26, I updated the command RUN apt-get -y install python build-essential libglib2.0-dev libpixman-1-dev ninja-build by replacing python with python3