Merge "Fixes the DIB script"

This commit is contained in:
Zuul 2024-01-30 06:29:43 +00:00 committed by Gerrit Code Review
commit fd10a99377
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ GUEST_USERNAME=${GUEST_USERNAME:-"ubuntu"}
echo "Installing docker"
export DEBIAN_FRONTEND=noninteractive
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu ${DIB_RELEASE} stable"
add-apt-repository -y "deb [arch=amd64] https://download.docker.com/linux/ubuntu ${DIB_RELEASE} stable"
apt-get update
apt-get install -y -qq docker-ce >/dev/null
apt-get clean