All checks were successful
Build / build (pull_request) Successful in 14m1s
- add python and make to the base images - remove make, python and jq from images derived from base
23 lines
472 B
HCL
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"
|
|
]
|