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

18 lines
355 B
Bash
Raw Normal View History

2023-12-07 19:38:43 +00:00
#!/bin/sh
set -exo pipefail
function main() {
{
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
apk cache clean
} > /dev/null
rm -rf /tmp/*
}
main