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 39cf51a commit b4dbb8cCopy full SHA for b4dbb8c
.ci/docker/build.sh
@@ -56,10 +56,14 @@ elif [[ "$image" == *-noble* ]]; then
56
UBUNTU_VERSION=24.04
57
elif [[ "$image" == *ubuntu* ]]; then
58
extract_version_from_image_name ubuntu UBUNTU_VERSION
59
+elif [[ "$image" == *centos* ]]; then
60
+ extract_version_from_image_name centos CENTOS_VERSION
61
fi
62
63
if [ -n "${UBUNTU_VERSION}" ]; then
64
OS="ubuntu"
65
+elif [ -n "${CENTOS_VERSION}" ]; then
66
+ OS="centos"
67
else
68
echo "Unable to derive operating system base..."
69
exit 1
0 commit comments