Skip to content

Commit

Permalink
Support cases where the VM image contains no docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeage committed Dec 16, 2024
1 parent a690bbb commit 709dcba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
echo "Initial free space"
df -h /
echo "Removing all pre-loaded docker images"
docker rmi $(docker image ls -aq) # Removes ~3GB
docker image ls -aq | xargs -r docker rmi # Removes ~3GB
df -h /
echo "Listing 100 largest packages"
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -rn | head -n 100
Expand Down

0 comments on commit 709dcba

Please sign in to comment.