We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737f4cc commit 38a05d5Copy full SHA for 38a05d5
images/ubuntu/scripts/build/install-container-tools.sh
@@ -27,6 +27,12 @@ if is_ubuntu20; then
27
echo "deb [arch=amd64 signed-by=$GPG_KEY] ${REPO_URL}/ /" > $REPO_PATH
28
fi
29
30
+if is_ubuntu22; then
31
+ # Install containernetworking-plugins for Ubuntu 22
32
+ curl -O http://archive.ubuntu.com/ubuntu/pool/universe/g/golang-github-containernetworking-plugins/containernetworking-plugins_1.1.1+ds1-3build1_amd64.deb
33
+ dpkg -i containernetworking-plugins_1.1.1+ds1-3build1_amd64.deb
34
+fi
35
+
36
# Install podman, buildah, skopeo container's tools
37
apt-get update
38
apt-get install ${install_packages[@]}
0 commit comments