/ Dockerfile
Dockerfile
1 FROM ubuntu:24.04 2 3 #ARG QEMU_ARCH 4 #ADD x86_64_qemu-${QEMU_ARCH}-static.tar.gz /usr/bin 5 6 COPY . /bd_build 7 8 RUN /bd_build/prepare.sh && \ 9 /bd_build/system_services.sh && \ 10 /bd_build/utilities.sh && \ 11 /bd_build/cleanup.sh 12 13 ENV DEBIAN_FRONTEND="teletype" \ 14 LANG="en_US.UTF-8" \ 15 LANGUAGE="en_US:en" \ 16 LC_ALL="en_US.UTF-8" 17 18 CMD ["/sbin/my_init"]