FROM ubuntu:24.04 # Cài đặt các công cụ cần thiết để "nhào nặn" Linux RUN apt-get update && apt-get install -y \ wget \ squashfs-tools \ xorriso \ grub-pc-bin \ grub-efi-amd64-bin \ mtools \ dosfstools \ && rm -rf /var/lib/apt/lists/* # Thiết lập thư mục làm việc mặc định WORKDIR /workspace # Chạy file script tự động khi container khởi động CMD ["/bin/bash", "/workspace/scripts/build_iso.sh"]