mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
* Adds install-terraform for installing terraform binaries * Adds install-ansible for installing ansible binaries * Adds a ruby-2.3-ansible-2.5.1-terraform-0.11 image Towards https://gitlab.com/gitlab-org/omnibus-gitlab/issues/3395
12 lines
198 B
Bash
Executable file
12 lines
198 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeou pipefail
|
|
|
|
ANSIBLE_VERSION=$1
|
|
|
|
apt-get update
|
|
apt-get install -y python-pip python-dev
|
|
apt-get clean -yqq
|
|
|
|
pip install --upgrade cffi
|
|
pip install "ansible==${ANSIBLE_VERSION}"
|