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

18 lines
376 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
pip3 install --break-system-packages 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