- 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
25 lines
490 B
HCL
25 lines
490 B
HCL
# almalinux/9.5/actionsdind
|
|
docker_source = "git.query.consul/unkin/almalinux9-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"
|
|
]
|