We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da9edbe commit deb712eCopy full SHA for deb712e
docker/Dockerfile
@@ -83,6 +83,13 @@ RUN git clone https://github.com/qemu/qemu.git /opt/qemu-riscv64-virt --depth 1
83
cd /opt/qemu-riscv64-virt/ && ./configure --target-list=riscv64-softmmu --enable-slirp && \
84
make -j$(nproc) && \
85
make install
86
+
87
+# Add qemu-aarch64-virt
88
+RUN git clone https://github.com/qemu/qemu.git /opt/qemu-aarch64-virt --depth 1 --branch v7.2.0 && \
89
+ cd /opt/qemu-aarch64-virt && ./configure --target-list=aarch64-softmmu --enable-slirp && \
90
+ make -j$(nproc) && \
91
+ make install
92
93
# setup environment
94
ENV PATH=$PATH:/opt/aarch64-toolchain/bin
95
ENV PATH=$PATH:/opt/aarch32-toolchain/bin
0 commit comments