This commit is contained in:
2025-07-04 08:06:31 -07:00
parent ef5fa8eac3
commit dae6743018
2 changed files with 5 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ echo "[INFO] Bootstrapping Debian $DEBIAN_RELEASE..."
debootstrap \ debootstrap \
--variant=minbase \ --variant=minbase \
--components=main,contrib,non-free \ --components=main,contrib,non-free \
--include=ca-certificates,software-properties-common,bash,wget,curl,nano,python3,locales \ --include=apt,ca-certificates \
--arch=amd64 \ --arch=amd64 \
"$DEBIAN_RELEASE" "$ROOTFS_DIR" http://deb.debian.org/debian/ "$DEBIAN_RELEASE" "$ROOTFS_DIR" http://deb.debian.org/debian/

View File

@@ -6,6 +6,10 @@ echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/10-assume_yes
apt-get update apt-get update
apt-get upgrade apt-get upgrade
apt-get install software-properties-common bash wget curl nano python3 python3-pip python3-venv locales
dpkg -l | grep python3-cryptography || echo "[OK] Not installed"
echo "[CHROOT] Removing unnecessary packages..." echo "[CHROOT] Removing unnecessary packages..."
apt-get remove --purge --allow-remove-essential pinentry-curses whiptail kmod iptables iproute2 dmidecode || true apt-get remove --purge --allow-remove-essential pinentry-curses whiptail kmod iptables iproute2 dmidecode || true