rhtyd commented on a change in pull request #4329:
URL: https://github.com/apache/cloudstack/pull/4329#discussion_r517219223
##########
File path: tools/appliance/systemvmtemplate/scripts/install_systemvm_packages.sh
##########
@@ -70,20 +76,29 @@ function install_packages() {
radvd \
sharutils genisoimage aria2 \
strongswan libcharon-extra-plugins libstrongswan-extra-plugins
strongswan-charon strongswan-starter \
- virt-what open-vm-tools qemu-guest-agent hyperv-daemons
-
- apt-get -y autoremove --purge
- apt-get clean
- apt-get autoclean
+ virt-what open-vm-tools qemu-guest-agent hyperv-daemons \
+ apt-transport-https ca-certificates curl gnupg gnupg-agent
software-properties-common cloud-init
+ apt_clean
${apt_get} install links
+ curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
+ apt-key fingerprint 0EBFCD88
+
#32 bit architecture support for vhd-util: not required for 32 bit template
if [ "${arch}" != "i386" ]; then
dpkg --add-architecture i386
apt-get update
${apt_get} install libuuid1:i386 libc6:i386
+
+ add-apt-repository \
+ "deb [arch=amd64] https://download.docker.com/linux/debian \
+ $(lsb_release -cs) \
+ stable"
+ apt-get update
+ ${apt_get} install docker-ce docker-ce-cli containerd.io
Review comment:
@Pearl1594 check if we can use - `--no-install-recommends `
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]