2023-12-07 19:38:43 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -exo pipefail
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
{
|
2023-12-15 15:11:49 +00:00
|
|
|
#upgradeSystem
|
2023-12-07 19:38:43 +00:00
|
|
|
apk -U upgrade
|
|
|
|
apk add --no-cache python3 py3-pip openssl-dev bash git
|
2023-12-15 15:11:49 +00:00
|
|
|
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
|
2023-12-15 15:11:49 +00:00
|
|
|
rm -rf /tmp/*
|
2023-12-07 19:38:43 +00:00
|
|
|
} > /dev/null
|
|
|
|
}
|
|
|
|
|
2023-12-15 15:11:49 +00:00
|
|
|
#source /tmp/install_functions_alpine.sh
|
2023-12-07 19:38:43 +00:00
|
|
|
main
|