dda-devops-build/infrastructure/ddadevops/image/resources/install.sh

20 lines
396 B
Bash
Raw Normal View History

2023-12-07 19:38:43 +00:00
#!/bin/sh
set -exo pipefail
function main() {
{
upgradeSystem
2023-12-07 19:38:43 +00:00
apk add --no-cache python3 py3-pip openssl-dev bash git curl
python3 -m pip install -U pip
pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection
cleanupDocker
2023-12-07 19:38:43 +00:00
} > /dev/null
}
source /tmp/install_functions_alpine.sh
2023-12-07 19:38:43 +00:00
main