packer-images/images/almalinux/9.5/actionsdind/variables.auto.pkrvars.hcl
Ben Vincent 63afa81440
All checks were successful
Build / build (pull_request) Successful in 14m1s
feat: add python and make
- add python and make to the base images
- remove make, python and jq from images derived from base
2025-03-09 17:12:44 +11:00

23 lines
472 B
HCL

# almalinux/9.5/actionsdind
docker_source = "git.query.consul/unkin/almalinux9-base:latest"
packages = [
"bash",
"consul",
"docker-ce-cli",
"nodejs",
"packer",
"terraform",
"terragrunt",
"unzip",
"vault"
]
scripts_pre_packages = [
"dnf install -y yum-utils",
"dnf module enable -y nodejs:20",
"yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo"
]
scripts_final = [
"dnf clean all",
"rm -rf /var/cache/dnf"
]