mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
42 lines
1.6 KiB
Bash
42 lines
1.6 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: containers.sh
|
|
## Desc: Installs container tools: podman, buildah and skopeo onto the image
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/os.sh
|
|
|
|
#
|
|
# pin podman due to https://github.com/actions/runner-images/issues/7753
|
|
# https://bugs.launchpad.net/ubuntu/+source/libpod/+bug/2024394
|
|
#
|
|
if isUbuntu20; then
|
|
install_packages=(podman buildah skopeo)
|
|
else
|
|
install_packages=(podman=3.4.4+ds1-1ubuntu1 buildah skopeo)
|
|
fi
|
|
|
|
# Packages is available in the official Ubuntu upstream starting from Ubuntu 21
|
|
if isUbuntu20; then
|
|
REPO_URL="https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable"
|
|
source /etc/os-release
|
|
sh -c "echo 'deb ${REPO_URL}/x${NAME}_${VERSION_ID}/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list"
|
|
wget -nv https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/x${NAME}_${VERSION_ID}/Release.key -O Release.key
|
|
apt-key add Release.key
|
|
fi
|
|
|
|
# Install podman, buildah, scopeo container's tools
|
|
apt-get update
|
|
apt-get -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
|
|
# Remove source repo
|
|
rm /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
|
|
# Document source repo
|
|
echo "containers $REPO_URL" >> $HELPER_SCRIPTS/apt-sources.txt
|
|
fi
|
|
|
|
invoke_tests "Tools" "Containers"
|