Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Ubuntu] Remove apt source for podman, buildah and skopeo #3077

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions images/linux/scripts/installers/containers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
## Desc: Installs container tools: podman, buildah and skopeo onto the image
################################################################################

source $HELPER_SCRIPTS/os.sh
dibir-magomedsaygitov marked this conversation as resolved.
Show resolved Hide resolved

# Install podman, buildah, scopeo container's tools
install_packages=(podman buildah skopeo)
source /etc/os-release
Expand All @@ -15,4 +17,8 @@ apt-get -qq -y install ${install_packages[@]}
mkdir -p /etc/containers
echo -e "[registries.search]\nregistries = ['docker.io', 'quay.io']" | tee /etc/containers/registries.conf

if isUbuntu20 ; then
rm /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
dibir-magomedsaygitov marked this conversation as resolved.
Show resolved Hide resolved
fi

invoke_tests "Tools" "Containers"