2023-08-08 07:04:28 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
|
|
|
|
function main() {
|
|
|
|
upgradeSystem
|
|
|
|
|
2023-08-11 11:35:15 +00:00
|
|
|
apt -qqy install curl git kotlin gradle iputils-ping ssh
|
2023-08-08 07:04:28 +00:00
|
|
|
|
|
|
|
#install pyb
|
|
|
|
apt -qqy install python3 python3-pip;
|
2023-10-25 07:18:41 +00:00
|
|
|
pip3 install pybuilder 'ddadevops>=4.7.0' deprecation dda-python-terraform boto3 pyyaml inflection --break-system-packages;
|
2023-08-08 07:04:28 +00:00
|
|
|
|
|
|
|
cleanupDocker
|
|
|
|
}
|
|
|
|
|
|
|
|
source /tmp/install_functions.sh
|
|
|
|
main
|