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

19 lines
422 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 -U upgrade
apk add --no-cache python3 py3-pip openssl-dev bash git
pip3 --break-system-packages install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection
#cleanupDocker
2023-12-07 19:38:43 +00:00
apk cache clean
rm -rf /tmp/*
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