feat: add fedora base images
Build / build (pull_request) Successful in 2m32s

add fedora/42, fedora/43, fedora/44
This commit is contained in:
2026-05-14 23:32:49 +10:00
parent bdadd646bc
commit 5cce6780fe
15 changed files with 114 additions and 0 deletions
@@ -0,0 +1,24 @@
# fedora/43/base
docker_source = "artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/fedora:43"
deploy_files_from_image = true
deploy_files_from_common = false
scripts_pre_file_copy = [
"rm -f /etc/yum.repos.d/*.repo",
"curl -k -o unkin-ca-certificates.rpm https://git.unkin.net/unkin/-/packages/rpm/unkin-ca-certificates/2025.7.13-1/files/12294 && rpm -i unkin-ca-certificates.rpm",
]
packages = [
"git",
"jq",
"make",
"python3",
"python3-pip",
"wget",
]
scripts_pre_packages = [
"dnf makecache",
"dnf update -y",
]
scripts_final = [
"dnf clean all",
"rm -rf /var/cache/dnf"
]