17 lines
No EOL
364 B
Bash
Executable file
17 lines
No EOL
364 B
Bash
Executable file
#!/bin/bash
|
|
set -exo pipefail
|
|
|
|
function main() {
|
|
{
|
|
upgradeSystem
|
|
|
|
apt-get -qqy install curl git kotlin gradle iputils-ping ssh python3 python3-pip
|
|
|
|
pip3 install pybuilder 'ddadevops>=4.7.0' deprecation dda-python-terraform boto3 pyyaml inflection --break-system-packages
|
|
|
|
cleanupDocker
|
|
} > /dev/null
|
|
}
|
|
|
|
source /tmp/install_functions.sh
|
|
main |