packer-images/images/almalinux/8.10/actionsdind/variables.auto.pkrvars.hcl
Ben Vincent f497194dda feat: update actions container
- cleanup TAGS/PUSH make targets
- update actionsdind to include consul, packer, terraform, terragrunt and vault
- add script to build only images that changed, or all if build/ scripts are changed
2025-01-12 13:28:06 +11:00

25 lines
491 B
HCL

# almalinux/8.10/actionsdind
docker_source = "git.query.consul/unkin/almalinux8-base:latest"
packages = [
"bash",
"consul",
"docker-ce-cli",
"jq",
"make",
"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"
]