1#!/bin/bash -e 2 3rm -f "${ROOTFS_DIR}/etc/apt/apt.conf.d/51cache" 4find "${ROOTFS_DIR}/var/lib/apt/lists/" -type f -delete 5on_chroot << EOF 6apt-get update 7apt-get -y dist-upgrade 8apt-get clean 9EOF 10 11