Files
packer-images/images/fedora/44/base/variables.auto.pkrvars.hcl
T
unkinben 430079f399
Build / build (pull_request) Successful in 12m30s
feat: add fedora rpmbuilder images
- bump base images
- add buildah to rpmbuilder images
- add fedora 42, 43 and 44 rpmbuilder images
- update git.query.consul to git.unkin.net
- remove incus builds for base images (moving to k8s)
2026-05-16 12:40:28 +10:00

25 lines
604 B
HCL

# fedora/44/base
docker_source = "artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/fedora:44"
deploy_files_from_image = true
deploy_files_from_common = false
scripts_pre_file_copy = [
"rm -f /etc/yum.repos.d/*.repo",
"curl -sk -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"
]