feat: debian install, docker tests

This commit is contained in:
2024-03-08 11:34:37 +00:00
parent d9283511a3
commit 02afe496d5
24 changed files with 201 additions and 326 deletions

View File

@@ -10,12 +10,11 @@ if command -v apt-get &> /dev/null; then
curl
gnupg
gnupg2
wget
)
sudo apt-get update -qq
if [ ${#apt_packages[@]} -gt 0 ]; then
sudo apt-get install -qq "${apt_packages[@]}"
fi
sudo apt-get install -qq "${apt_packages[@]}"
unset apt_packages
else
@@ -23,4 +22,3 @@ else
fi
apt --version
echo "Last updated: $(ls -l /var/lib/apt/periodic/update-success-stamp | awk '{print $6" "$7" "$8}')"