dfsgdsfghsdfhg
debian-base-build-trixie / Docker prune (vm-docker-build2) (push) Successful in 4s
debian-base-build-bullseye / Docker prune (vm-docker-build2) (push) Successful in 3s
debian-base-build-trixie / Build RootFS Archives (trixie) (push) Successful in 5m37s
debian-base-build-bookworm / Docker prune (vm-docker-build2) (push) Successful in 4s
debian-base-build-bullseye / Build RootFS Archives (bullseye) (push) Successful in 6m2s
debian-base-build-trixie / Build & Push Docker Images (trixie) (push) Successful in 1m52s
debian-base-build-bullseye / Build & Push Docker Images (bullseye) (push) Successful in 1m34s
debian-base-build-trixie / generate-changelogs (push) Successful in 1m2s
debian-base-build-bullseye / generate-changelogs (push) Successful in 1m4s
debian-base-build-bookworm / Build RootFS Archives (bookworm) (push) Successful in 5m58s
debian-base-build-trixie / generate-build-info (push) Successful in 1m27s
debian-base-build-bullseye / generate-build-info (push) Successful in 1m35s
debian-base-build-bookworm / Build & Push Docker Images (bookworm) (push) Successful in 1m30s
debian-base-build-bookworm / generate-changelogs (push) Successful in 46s
debian-base-build-bookworm / generate-build-info (push) Successful in 1m4s

This commit is contained in:
2026-07-16 21:00:02 -07:00
parent 6b6bcb21c3
commit 6997ceae72
+2 -2
View File
@@ -11,7 +11,7 @@ apt-get update
apt-get install -y --no-install-recommends debootstrap bzip2
debootstrap --verbose --variant=minbase --components=main,contrib,non-free \
--include=apt,ca-certificates,bash,wget,curl,nano,top,screen,locales,python3,python3-pip,libffi-dev --arch=amd64 "$DEBIAN_RELEASE" "$ROOTFS_DIR" \
--include=apt,ca-certificates,bash,wget,curl,nano,locales,python3,python3-pip,libffi-dev --arch=amd64 "$DEBIAN_RELEASE" "$ROOTFS_DIR" \
http://deb.debian.org/debian/
for dir in dev dev/pts proc sys; do
@@ -23,7 +23,7 @@ chroot "$ROOTFS_DIR" /bin/bash <<'EOF'
echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/10-assume_yes
apt-get update
apt-get upgrade
apt-get install --no-install-recommends software-properties-common bash wget curl screen nano locales
apt-get install --no-install-recommends software-properties-common bash wget curl top screen nano locales
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen
locale-gen
update-locale LANG=en_US.UTF-8