17 lines
350 B
Bash
17 lines
350 B
Bash
|
#!/bin/bash
|
||
|
set -eux
|
||
|
|
||
|
function main() {
|
||
|
upgradeSystem
|
||
|
|
||
|
apt -qqy install curl git kotlin gradle
|
||
|
|
||
|
#install pyb
|
||
|
apt -qqy install python3 python3-pip;
|
||
|
pip3 install pybuilder 'ddadevops>=4.2.0' deprecation dda-python-terraform boto3 pyyaml inflection --break-system-packages;
|
||
|
|
||
|
cleanupDocker
|
||
|
}
|
||
|
|
||
|
source /tmp/install_functions.sh
|
||
|
main
|