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

19 lines
441 B
Bash
Executable file

#!/bin/sh
set -exo pipefail
function main() {
{
#upgradeSystem
apk -U upgrade
apk add --no-cache python3 py3-pip openssl-dev bash git curl
python3 -m pip install -U pip
pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection
#cleanupDocker
apk cache clean
rm -rf /tmp/*
} > /dev/null
}
#source /tmp/install_functions_alpine.sh
main