Files
packer-images/images/fedora/42/base/variables.auto.pkrvars.hcl
T
unkinben 5cce6780fe
Build / build (pull_request) Successful in 2m32s
feat: add fedora base images
add fedora/42, fedora/43, fedora/44
2026-05-14 23:34:11 +10:00

25 lines
603 B
HCL

# fedora/42/base
docker_source = "artifactapi.k8s.syd1.au.unkin.net/dockerhub/library/fedora:42"
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"
]