change how base image builds
Some checks failed
Build and Push Multi-Arch Docker Images / build (push) Has been cancelled
Some checks failed
Build and Push Multi-Arch Docker Images / build (push) Has been cancelled
This commit is contained in:
26
base-image-script/debian-bullseye_pt2.sh
Normal file
26
base-image-script/debian-bullseye_pt2.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/bash
|
||||
# Copyright (c) 2025 fithwum
|
||||
# All rights reserved
|
||||
echo "[CHROOT] Configuring Debian system..."
|
||||
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 nano locales
|
||||
|
||||
echo "[CHROOT] Generating locales..."
|
||||
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
||||
locale-gen
|
||||
update-locale LANG=en_US.UTF-8
|
||||
|
||||
echo "[CHROOT] Removing unnecessary packages..."
|
||||
apt-get remove --purge --allow-remove-essential pinentry-curses whiptail kmod iptables iproute2 dmidecode || true
|
||||
|
||||
echo "[CHROOT] Cleaning up..."
|
||||
apt-get clean
|
||||
apt-get install -f
|
||||
find /var/lib/apt/lists/ -type f -delete
|
||||
|
||||
echo "[CHROOT] Done. Type 'exit' to return."
|
||||
exit
|
||||
Reference in New Issue
Block a user