
Also using ubuntu-minimal to decrease the image size a little bit, from 963M to 815M in the test. Change-Id: I6d70add380f4b61ebe89c72765612d8cb6127ccb
10 lines
194 B
Bash
Executable File
10 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# CONTEXT: GUEST during CONSTRUCTION as ROOT
|
|
# PURPOSE: Delete contents of apt cache on guest (saves image disk space)
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
apt-get --assume-yes purge --auto-remove
|