packer-images/images/almalinux/9.5/actionsdind/variables.auto.pkrvars.hcl
Ben Vincent eb1aee35c5
All checks were successful
Deploy / build (push) Successful in 18m22s
feat: add python and make (#9)
- add python and make to the base images
- remove make, python and jq from images derived from base

Reviewed-on: https://git.query.consul/unkin/packer-images/pulls/9
2025-03-09 17:50:37 +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"
]